Viewport constructor

Viewport({
  1. LatLng? low,
  2. LatLng? high,
})

Implementation

factory Viewport({
  $28.LatLng? low,
  $28.LatLng? high,
}) {
  final _result = create();
  if (low != null) {
    _result.low = low;
  }
  if (high != null) {
    _result.high = high;
  }
  return _result;
}