PlatformViewAdapter constructor

const PlatformViewAdapter({
  1. Key? key,
  2. required Widget mobile,
  3. required Widget desk,
  4. ViewAdapterType type = ViewAdapterType.width,
})

Implementation

const PlatformViewAdapter({
  super.key,
  required this.mobile,
  required this.desk,
  this.type = ViewAdapterType.width,
});