toMap method
- EnumMethod? enumMethod,
Converts instance to a map.
Implementation
Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
return {
"canShowMIMEType": canShowMIMEType,
"isForMainFrame": isForMainFrame,
"response": response?.toMap(enumMethod: enumMethod),
};
}