CupertinoUserInterfaceLevelModifier constructor

const CupertinoUserInterfaceLevelModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required CupertinoUserInterfaceLevelData data,
})

Creates a CupertinoUserInterfaceLevel to change descendant Cupertino widget's visual level.

Implementation

const CupertinoUserInterfaceLevelModifier({
  super.key,
  super.child,
  super.modifierKey,
  required CupertinoUserInterfaceLevelData data,
}) : _data = data;