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.
aku_new_community/lib/models/login/community_model.dart

27 lines
596 B

import 'package:hive_flutter/adapters.dart';
3 years ago
import 'package:json_annotation/json_annotation.dart';
part 'community_model.g.dart';
@JsonSerializable()
@HiveType(typeId: 7)
3 years ago
class CommunityModel {
@HiveField(0)
3 years ago
final int id;
@HiveField(1)
3 years ago
final String name;
@HiveField(2)
3 years ago
final String address;
@HiveField(3)
3 years ago
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,
});
}