IndexedData<T> constructor

IndexedData<T>({
  1. int? id,
  2. required T data,
})

Implementation

IndexedData({this.id, required this.data});