GoogleMapsControllerVariable constructor

const GoogleMapsControllerVariable({
  1. required ID id,
  2. required String name,
  3. required GoogleMapController? mapController,
  4. required CameraPosition? cameraPosition,
})

Implementation

const GoogleMapsControllerVariable({
  required ID id,
  required String name,
  required this.mapController,
  required this.cameraPosition,
}) : super(
        id: id,
        name: name,
        type: VariableTypes.googleMapsController,
        isNullable: false,
      );