KListView<T> constructor

KListView<T>({
  1. @required KModal<T>? model,
  2. KOptions options = const KOptions(),
  3. Key? key,
})

Implementation

KListView({
  @required this.model,
  this.options = const KOptions(),
  Key? key,
}) : super(key: key) {
  Get.lazyPut<KListController>(() => KListController(model: model),
      tag: model!.getKey);
}