toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  _json['organizationId'] = organizationId;
  _json['address'] = address;
  _json['caip2'] = caip2;
  if (nonce != null) {
    _json['nonce'] = nonce;
  }
  if (gasStationNonce != null) {
    _json['gasStationNonce'] = gasStationNonce;
  }
  return _json;
}