toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (algorithm != null) 'algorithm': algorithm!,
  if (name != null) 'name': name!,
  if (pem != null) 'pem': pem!,
  if (pemCrc32c != null) 'pemCrc32c': pemCrc32c!,
  if (protectionLevel != null) 'protectionLevel': protectionLevel!,
  if (publicKey != null) 'publicKey': publicKey!,
  if (publicKeyFormat != null) 'publicKeyFormat': publicKeyFormat!,
};