copyWith method

Seconds copyWith({
  1. double? seconds,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

Seconds copyWith({
  double? seconds,
  dynamic extra,
  int? clientId,
}) => Seconds(
  seconds: seconds ?? this.seconds,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);