- fix(learn): Modify learn path flow according to the new hierarchy. - add(learn): Add additionl screens for the new hierarchy levels.
22 lines
731 B
Dart
22 lines
731 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'category.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Category _$CategoryFromJson(Map<String, dynamic> json) => Category(
|
|
id: (json['id'] as num?)?.toInt(),
|
|
name: json['name'] as String?,
|
|
isActive: json['is_active'] as bool?,
|
|
totalCount: (json['total_count'] as num?)?.toInt(),
|
|
);
|
|
|
|
Map<String, dynamic> _$CategoryToJson(Category instance) => <String, dynamic>{
|
|
'id': instance.id,
|
|
'name': instance.name,
|
|
'is_active': instance.isActive,
|
|
'total_count': instance.totalCount,
|
|
};
|