Oishi constructor

const Oishi({
  1. Key? key,
  2. required List<ScreenConfig> screens,
  3. required List<ButtonConfig> buttons,
  4. ActionConfig? action,
})

Implementation

const Oishi({
  super.key,
  this.logo,
  required this.screens,
  required this.buttons,
  this.action,
});