HiveBoxesView constructor

const HiveBoxesView({
  1. Key? key,
  2. Color? appBarColor,
  3. TextStyle? columnTitleTextStyle,
  4. TextStyle? rowTitleTextStyle,
  5. required Map<Box, FromJsonConverter> hiveBoxes,
  6. required ErrorCallback onError,
  7. String? dateFormat,
})

Implementation

const HiveBoxesView({
  Key? key,
  this.appBarColor,
  this.columnTitleTextStyle,
  this.rowTitleTextStyle,
  required this.hiveBoxes,
  required this.onError,
  this.dateFormat,
}) : super(key: key);