BMFInfoWindow constructor
- {@required String image,
- @required BMFCoordinate coordinate,
- double yOffset,
- bool isAddWithBitmap}
BMFInfoWindow构造方法
Implementation
BMFInfoWindow({
@required this.image,
@required this.coordinate,
this.yOffset,
this.isAddWithBitmap,
}) : assert(image != null),
assert(coordinate != null) {
this._id = this.hashCode.toString();
}