VerifyCustomerResult.fromJson constructor

VerifyCustomerResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory VerifyCustomerResult.fromJson(Map<String, dynamic> json) {
  return VerifyCustomerResult(
    valid: json['valid'] as bool,
    message: json['message'] as String?,
  );
}