buildView method

  1. @override
Widget buildView(
  1. int viewId,
  2. void onPlatformViewCreated(
    1. int
    )
)
override

Implementation

@override
buildView(int viewId, void Function(int) onPlatformViewCreated) {
  return HtmlElementView(
      viewType: 'player_$viewId',
      onPlatformViewCreated: onPlatformViewCreated);
}