controller property

ShadSelectController<T> get controller

Implementation

ShadSelectController<T> get controller =>
    widget.controller ??
    (_controller ??= ShadSelectController<T>(
      initialValue: {if (initialValue is T) initialValue as T},
    ));