moveCameraBounds method
Implementation
void moveCameraBounds(LatLng southwest, LatLng northeast, {int? padding}) {
getMapController().then((controller) => controller.animateCamera(
CameraUpdate.newLatLngBounds(
LatLngBounds(southwest: southwest, northeast: northeast),
padding?.toDouble() ?? 50)));
}