toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final embeddedLengthMax = this.embeddedLengthMax;
  final passcode = this.passcode;
  final recipient = this.recipient;
  return {
    'embeddedLengthMax': ?embeddedLengthMax,
    'passcode': ?passcode,
    'recipient': ?recipient,
  };
}