toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'id': id,
    'nmae': nmae?.toMap(),
    'email': email,
    'phone': phone?.toMap(),
    'birthdate': birthdate,
    'personalNumber': personalNumber,
    'coordinationNumber': coordinationNumber,
    'gdNumber': gdNumber,
    'countryResidence': countryResidence,
    'isPep': isPep,
    'isSancyioned': isSancyioned,
  };
}