DeleteTrustResult.fromJson constructor

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

Implementation

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