BMFCoordinateBounds constructor
- {@required BMFCoordinate northeast,
- @required BMFCoordinate southwest}
BMFCoordinateBounds构造方法
Implementation
BMFCoordinateBounds({
@required this.northeast,
@required this.southwest,
})
: assert(northeast != null),
assert(southwest != null);