toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final key = this.key;
  final value = this.value;
  final secure = this.secure;
  return {
    'Key': key,
    'Value': value,
    if (secure != null) 'Secure': secure,
  };
}