NikuScreen constructor

const NikuScreen({
  1. Key? key,
  2. required Widget child,
  3. Widget base(
    1. Niku
    )?,
  4. Widget xs(
    1. Niku
    )?,
  5. Widget sm(
    1. Niku
    )?,
  6. Widget md(
    1. Niku
    )?,
  7. Widget lg(
    1. Niku
    )?,
  8. Widget xl(
    1. Niku
    )?,
})

Implementation

const NikuScreen({
  Key? key,
  required this.child,
  this.base,
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
}) : super(key: key);