AsPlatformProvider constructor

const AsPlatformProvider({
  1. required PlatformType platformType,
  2. required Widget child,
  3. Key? key,
})

Creates a platform provider.

Implementation

const AsPlatformProvider({
  required this.platformType,
  required super.child,
  super.key,
});