v1SolSendTransactionResult.fromJson constructor

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

Implementation

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