VerificationData.fromJson constructor
Implementation
factory VerificationData.fromJson(Map<String, dynamic> json) {
return VerificationData(
suid: json['suid'] as String? ?? '',
customerName: json['customerName'] as String? ?? '',
status: json['status'] as String? ?? '',
);
}