ScreenState constructor

ScreenState(
  1. {String? mainScreenPerson,
  2. String? mainScreenProducerId,
  3. required bool mainScreenFilled,
  4. required bool adminOnMainScreen}
)

Implementation

ScreenState({
  this.mainScreenPerson,
  this.mainScreenProducerId,
  required this.mainScreenFilled,
  required this.adminOnMainScreen,
});