BMFCoordinateBounds constructor

BMFCoordinateBounds(
  1. {@required BMFCoordinate northeast,
  2. @required BMFCoordinate southwest}
)

BMFCoordinateBounds构造方法

Implementation

BMFCoordinateBounds({
  @required this.northeast,
  @required this.southwest,
})
    : assert(northeast != null),
      assert(southwest != null);