copyWith method
Implementation
Sessions copyWith({List<Session>? sessions, int? inactiveSessionTtlDays}) =>
Sessions(
sessions: sessions ?? this.sessions,
inactiveSessionTtlDays:
inactiveSessionTtlDays ?? this.inactiveSessionTtlDays,
);