LatLngBounds.fromMap constructor

LatLngBounds.fromMap(
  1. Map data
)

Build a object from Map.

example on the Map:

{

Implementation

//     'west':0.0,
//     'east':0.0,
//     'north':0.0,
//     'south':0.0
//   }
/// ```
LatLngBounds.fromMap(Map data){
  east=data['east'];
  west=data['west'];
  south=data['south'];
  north=data['north'];
}