IaSdkPlatformView constructor

const IaSdkPlatformView({
  1. Key? key,
  2. required String viewId,
  3. Map<String, dynamic> creationParams = const {},
  4. bool selfSizing = true,
})

Default constructor for creating an instance of IaSdkPlatformView.

Implementation

const IaSdkPlatformView({
  super.key,
  required this.viewId,
  this.creationParams = const {},
  this.selfSizing = true,
});