configureForRuntime static method
void
configureForRuntime(
- Runtime runtime
Configure this class for use in a Runtime
Implementation
static void configureForRuntime(Runtime runtime) {
runtime.registerBridgeFunc(
'package:flutter_map_geojson2/geojson2/geojson_layer.dart',
'GeoJsonLayer.',
$GeoJsonLayer.$new,
);
runtime.registerBridgeFunc(
'package:flutter_map_geojson2/geojson2/geojson_layer.dart',
'GeoJsonLayer.memory',
$GeoJsonLayer.$memory,
);
runtime.registerBridgeFunc(
'package:flutter_map_geojson2/geojson2/geojson_layer.dart',
'GeoJsonLayer.file',
$GeoJsonLayer.$file,
);
runtime.registerBridgeFunc(
'package:flutter_map_geojson2/geojson2/geojson_layer.dart',
'GeoJsonLayer.network',
$GeoJsonLayer.$network,
);
}