createPlatformView method

Widget createPlatformView(
  1. dynamic onViewCreated(
    1. int viewID
    ), {
  2. Key? key,
})

Implementation

Widget createPlatformView(Function(int viewID) onViewCreated, {Key? key}) {
  return _createView("platformview", onViewCreated, key: key);
}