TGetNoncesResponse.fromJson constructor

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

Implementation

factory TGetNoncesResponse.fromJson(Map<String, dynamic> json) {
  final _nonce = json['nonce'] as String?;
  final _gasStationNonce = json['gasStationNonce'] as String?;
  return TGetNoncesResponse(
    nonce: _nonce,
    gasStationNonce: _gasStationNonce,
  );
}