toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataType = this.dataType;
  final key = this.key;
  final masked = this.masked;
  final value = this.value;
  return {
    'dataType': ?dataType,
    'key': ?key,
    'masked': ?masked,
    'value': ?value,
  };
}