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.
29 lines
646 B
29 lines
646 B
import 'package:equatable/equatable.dart';
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'community_model.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class CommunityModel extends Equatable {
|
|
final int id;
|
|
final String name;
|
|
final String address;
|
|
final String addressDetails;
|
|
factory CommunityModel.fromJson(Map<String, dynamic> json) =>
|
|
_$CommunityModelFromJson(json);
|
|
|
|
const CommunityModel({
|
|
required this.id,
|
|
required this.name,
|
|
required this.address,
|
|
required this.addressDetails,
|
|
});
|
|
@override
|
|
List<Object?> get props => [
|
|
id,
|
|
name,
|
|
address,
|
|
addressDetails,
|
|
];
|
|
}
|