copyWith method
DashboardUserGetResponse
copyWith({
- String? id,
- String? createdAt,
- String? emailAddress,
- DashboardUserStatus? status,
- 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);
}