toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (timestampMs != null) {
    _json['timestampMs'] = timestampMs;
  }
  if (organizationId != null) {
    _json['organizationId'] = organizationId;
  }
  _json['walletId'] = walletId;
  if (walletName != null) {
    _json['walletName'] = walletName;
  }
  return _json;
}