You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
790 B
22 lines
790 B
// GENERATED CODE - DO NOT MODIFY BY HAND |
|
|
|
part of 'founder.dart'; |
|
|
|
// ************************************************************************** |
|
// JsonSerializableGenerator |
|
// ************************************************************************** |
|
|
|
Founder _$FounderFromJson(Map<String, dynamic> json) => Founder() |
|
..name = json['name'] as String? |
|
..position = json['position'] as String? |
|
..description = json['description'] as String? |
|
..imgUrl = json['imgUrl'] as String? |
|
..profile = json['profile'] as String?; |
|
|
|
Map<String, dynamic> _$FounderToJson(Founder instance) => <String, dynamic>{ |
|
'name': instance.name, |
|
'position': instance.position, |
|
'description': instance.description, |
|
'imgUrl': instance.imgUrl, |
|
'profile': instance.profile, |
|
};
|
|
|