CustomerFiles.fromMap constructor
Implementation
factory CustomerFiles.fromMap(Map<String, dynamic> map) {
return CustomerFiles(
signatureCustomer: map['signature_customer']?.toString(),
humanBlankUri: map['human_blank_uri']?.toString(),
passportBlankUri: map['passport_blank_uri']?.toString(),
registrationBlankUri: map['registration_blank_uri']?.toString(),
otherBlankUri: map['other_blank_uri']?.toString(),
);
}