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.
16 lines
522 B
16 lines
522 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'community_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
CommunityModel _$CommunityModelFromJson(Map<String, dynamic> json) =>
|
|
CommunityModel(
|
|
id: json['id'] as int,
|
|
name: json['name'] as String,
|
|
address: json['address'] as String,
|
|
addressDetails: json['addressDetails'] as String,
|
|
);
|