TGetNoncesResponse.fromJson constructor
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,
);
}