StatusItemView constructor

StatusItemView({
  1. Key? key,
  2. required String name,
  3. required String time,
  4. required String statusImage,
  5. required bool seen,
})

Implementation

StatusItemView({
  super.key,
  required this.name,
  required this.time,
  required this.statusImage,
  required this.seen,
});