copyWith method

Time$Response copyWith({
  1. double? time,
})

Implementation

Time$Response copyWith({double? time}) {
  return Time$Response(time: time ?? this.time);
}