PlatformDetectMatchedType constructor

const PlatformDetectMatchedType({
  1. Key? key,
  2. required Widget match,
  3. Widget? notMatch = const SizedBox(),
  4. required PlatformType platformType,
})

Implementation

const PlatformDetectMatchedType(
    {Key? key,
    required this.match,
    this.notMatch = const SizedBox(),
    required this.platformType})
    : super(key: key);