registerViewFactory method

void registerViewFactory(
  1. String viewTypeId,
  2. dynamic viewFactory(
    1. int
    )
)

Implementation

void registerViewFactory(
    String viewTypeId, dynamic Function(int) viewFactory) {
  throw UnsupportedError("platform view registry in non-web context");
}