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