toMap method

Map<String, dynamic> toMap({
  1. EnumMethod? enumMethod,
})
override

Converts instance to a map.

Implementation

Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
  return {
    "protectionSpace": protectionSpace.toMap(enumMethod: enumMethod),
    "allowedCertificateAuthorities": allowedCertificateAuthorities,
    "isProxy": isProxy,
    "keyTypes": keyTypes,
    "mutuallyTrustedCertificates": mutuallyTrustedCertificates
        ?.map((e) => e.toMap(enumMethod: enumMethod))
        .toList(),
    "principals": principals,
  };
}