AdaptiveInheritance constructor

const AdaptiveInheritance({
  1. Key? key,
  2. required AdaptiveState adaptiveState,
  3. required Widget child,
})

Implementation

const AdaptiveInheritance({
  Key? key,
  required this.adaptiveState,
  required Widget child,
}) : super(key: key, child: child);