UnreadHintWidget constructor

const UnreadHintWidget({
  1. Key? key,
  2. required Widget child(
    1. BuildContext context,
    2. int count
    ),
  3. required ValueNotifier<int> count,
  4. num? right,
  5. num? bottom,
  6. num? top,
  7. num? left,
})

Implementation

const UnreadHintWidget({
  Key? key,
  required this.child,
  required this.count,
  this.right,
  this.bottom,
  this.top,
  this.left,
}) : super(key: key);