toMap method
- EnumMethod? enumMethod,
Converts instance to a map.
Implementation
Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
return {
"credentials": credentials
?.map((e) => e.toMap(enumMethod: enumMethod))
.toList(),
"protectionSpace": protectionSpace?.toMap(enumMethod: enumMethod),
};
}