UnreadHintWidget constructor
const
UnreadHintWidget({
- Key? key,
- required Widget child(
- BuildContext context,
- int count
- required ValueNotifier<
int> count, - num? right,
- num? bottom,
- num? top,
- num? left,
Implementation
const UnreadHintWidget({
Key? key,
required this.child,
required this.count,
this.right,
this.bottom,
this.top,
this.left,
}) : super(key: key);