BindError<T> constructor

BindError<T>({
  1. required T controller,
  2. String? tag,
})

Creates a BindError with the provided controller and optional tag.

Implementation

BindError({required this.controller, this.tag});