create method

Future<void> create(
  1. {Size? size,
  2. Offset? position}
)

Creates the platform view with the initial size.

size is the view's initial size in logical pixel. size can be omitted if the concrete implementation doesn't require an initial size to create the platform view.

position is the view's initial position in logical pixels. position can be omitted if the concrete implementation doesn't require an initial position.

Implementation

Future<void> create({Size? size, Offset? position}) async {}