copyWith method

DashboardUserGetResponse copyWith({
  1. String? id,
  2. String? createdAt,
  3. String? emailAddress,
  4. DashboardUserStatus? status,
  5. String? requestId,
})

Implementation

DashboardUserGetResponse copyWith(
    {String? id,
    String? createdAt,
    String? emailAddress,
    enums.DashboardUserStatus? status,
    String? requestId}) {
  return DashboardUserGetResponse(
      id: id ?? this.id,
      createdAt: createdAt ?? this.createdAt,
      emailAddress: emailAddress ?? this.emailAddress,
      status: status ?? this.status,
      requestId: requestId ?? this.requestId);
}