copyWith method

CreditSessionsGetResponse copyWith({
  1. List<CreditSession>? sessions,
  2. String? requestId,
})

Implementation

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