HiveListener<T> constructor

const HiveListener<T>({
  1. Key? key,
  2. required Box<T> box,
  3. List<String>? keys,
  4. required Widget builder(
    1. Box<T> bx
    ),
  5. bool closeOnDispose = false,
})

Implementation

const HiveListener({
  Key? key,
  required this.box,
  this.keys,
  required this.builder,
  this.closeOnDispose = false,
}) : super(key: key);