copyWithWrapped method

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

Implementation

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