createState method

  1. @protected
State<T> createState(
  1. T identifier
)

Internal helper that can be overridden by subclasses to customize the creation of State objects.

Implementation

@protected
State<T> createState(T identifier) => State<T>(this, identifier);