UXPWidget constructor

const UXPWidget({
  1. Key? key,
  2. required Map<String, dynamic>? props,
  3. bool? inHomeTap = true,
  4. bool? fullScreen = false,
  5. bool? takeFullScreenWidth = false,
  6. double? aspectRatio,
})

Implementation

const UXPWidget({
  Key? key,
  required this.props,
  this.inHomeTap = true,
  this.fullScreen = false,
  this.takeFullScreenWidth = false,
  this.aspectRatio,
}) : super(key: key);