withTag<T> static method

TagProvider<T> withTag<T>(
  1. _LazyCallback<T> creator, {
  2. bool autoDispose = true,
})

Implementation

static TagProvider<T> withTag<T>(
  _LazyCallback<T> creator, {
  bool autoDispose = true,
}) {
  return TagProvider<T>(
    creator: creator,
    autoDispose: autoDispose,
  );
}