toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final boolValue = this.boolValue;
  final encryptionKeyValue = this.encryptionKeyValue;
  final intValue = this.intValue;
  final key = this.key;
  final secretValue = this.secretValue;
  final stringValue = this.stringValue;
  return {
    'boolValue': ?boolValue,
    'encryptionKeyValue': ?encryptionKeyValue,
    'intValue': ?intValue,
    'key': ?key,
    'secretValue': ?secretValue,
    'stringValue': ?stringValue,
  };
}