toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.secret != null) {
json[r'secret'] = this.secret;
} else {
json[r'secret'] = null;
}
if (this.qrCodeUrl != null) {
json[r'qr_code_url'] = this.qrCodeUrl;
} else {
json[r'qr_code_url'] = null;
}
return json;
}