toMap method

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

Converts instance to a map.

Implementation

Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
  return {
    "attrs": attrs?.map((e) => e.toMap(enumMethod: enumMethod)).toList(),
    "content": content,
    "name": name,
  };
}