ListItemFactory<M extends Jsonable> typedef

ListItemFactory<M extends Jsonable> = M Function(Map<String, dynamic> item)

The factory function (eg. fromJson()) that will be used for a single item in a paginated list.

Implementation

typedef ListItemFactory<M extends Jsonable> = M Function(
  Map<String, dynamic> item,
);