VLCEvent.fromMap constructor

VLCEvent.fromMap(
  1. Map param
)

Implementation

VLCEvent.fromMap(Map param){
  type = EventOriginalType.getType(param["type"]);
  buffering = param["Buffering"];
  timeChanged = param["Time"];
  lengthChanged = param["Length"];
  positionChanged = param["Position"];
  voutCount = param["VoutCount"];
  esChangedType = param["EsChangedType"];
  esChangedID = param["EsChangedID"];
  seekable = param["Seekable"];
  pausable = param["Pausable"];
  recording = param["Recording"];
  recordPath = param["RecordPath"];
}