copyWith method
Implementation
CreditSessionsGetResponse copyWith(
{List<CreditSession>? sessions, String? requestId}) {
return CreditSessionsGetResponse(
sessions: sessions ?? this.sessions,
requestId: requestId ?? this.requestId);
}