toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (encryptionAlgorithm != null)
    'encryptionAlgorithm': encryptionAlgorithm!,
  if (encryptionState != null) 'encryptionState': encryptionState!,
  if (keyLength != null) 'keyLength': keyLength!,
  if (maxKeys != null) 'maxKeys': maxKeys!,
};