copyWith method

VLCValue copyWith({
  1. VLCState? state,
})

Implementation

VLCValue copyWith({VLCState? state}){
  return VLCValue(
      state:state ?? this.state
  );
}