toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alternateText = this.alternateText;
final initialRotatingBarcodeValues = this.initialRotatingBarcodeValues;
final renderEncoding = this.renderEncoding;
final showCodeText = this.showCodeText;
final totpDetails = this.totpDetails;
final type = this.type;
final valuePattern = this.valuePattern;
return {
'alternateText': ?alternateText,
'initialRotatingBarcodeValues': ?initialRotatingBarcodeValues,
'renderEncoding': ?renderEncoding,
'showCodeText': ?showCodeText,
'totpDetails': ?totpDetails,
'type': ?type,
'valuePattern': ?valuePattern,
};
}