BMFOverlay constructor

BMFOverlay(
  1. {bool? visible,
  2. int? zIndex,
  3. Map? customMap}
)

Implementation

BMFOverlay({this.visible, this.zIndex, this.customMap}) {
  var timeStamp = DateTime.now().millisecondsSinceEpoch;
  _id = '$timeStamp' '_' '$hashCode';
  className = this.runtimeType.toString();
}