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