copyWithWrapped method

Time copyWithWrapped({
  1. Wrapped<double?>? time,
})

Implementation

Time copyWithWrapped({Wrapped<double?>? time}) {
  return Time(time: (time != null ? time.value : this.time));
}