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