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