DataState<T> constructor

const DataState<T>({
  1. required T data,
})

Implementation

const DataState({
  required this.data,
});