toMap method

  1. @override
Map<String, dynamic> toMap()
override

Create a map with all attributes names as keys and the attribute values as primitives(int, List, Map, String, ...) or Serializable.

Implementation

@override
Map<String, dynamic> toMap() {
  final json = super.toMap();
  return json;
}