copyWith method

SetAlarm copyWith({
  1. double? seconds,
})

Implementation

SetAlarm copyWith({double? seconds}) =>
    SetAlarm(seconds: seconds ?? this.seconds);