EcpBottomMultiPicker<T> constructor

const EcpBottomMultiPicker<T>({
  1. Key? key,
  2. String? title,
  3. Future<List<T>?> repo()?,
  4. double? height,
  5. String? onDisplay(
    1. T
    )?,
  6. List<T>? initValue,
  7. bool? enableLoadMore,
  8. bool enableRefresh = false,
  9. Future<List<T>?> pagingRepo(
    1. int index
    )?,
})

Implementation

const EcpBottomMultiPicker({
  super.key,
  this.title,
  this.repo,
  this.height,
  this.onDisplay,
  this.initValue,
  this.enableLoadMore,
  this.enableRefresh = false,
  this.pagingRepo,
}) : assert(repo != null || pagingRepo != null,
          "repo or pagingRepo must not be null");