v1SolSendTransactionResult.fromJson constructor
Implementation
factory v1SolSendTransactionResult.fromJson(Map<String, dynamic> json) {
final _sendTransactionStatusId = json['sendTransactionStatusId'] as String;
return v1SolSendTransactionResult(
sendTransactionStatusId: _sendTransactionStatusId,
);
}