tag<E> static method

TagProvider<E> tag<E>(
  1. CreatorCallback<E, dynamic> callback, {
  2. String? debugLabel,
})

creates a TagProvider

Implementation

static TagProvider<E> tag<E>(
  CreatorCallback<E, dynamic> callback,
  {String? debugLabel}
) {
  return TagProvider<E>(callback, debugLabel: debugLabel);
}