VerifyTrustResult.fromJson constructor

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

Implementation

factory VerifyTrustResult.fromJson(Map<String, dynamic> json) {
  return VerifyTrustResult(
    trustId: json['TrustId'] as String?,
  );
}