ZetaRoundedScope constructor

const ZetaRoundedScope({
  1. required bool rounded,
  2. required Widget child,
  3. Key? key,
})

Constructs a ZetaRoundedScope.

Implementation

const ZetaRoundedScope({
  required bool rounded,
  required super.child,
  super.key,
}) : _rounded = rounded;