itemToMap method

Map itemToMap(
  1. T item
)

convert concrete type T to dynamic map (opposite of createItem)

Implementation

Map<dynamic, dynamic> itemToMap(T item) {
  throw UnimplementedError();
}