copyWith method

ProjectRoleUser copyWith({
  1. String? accountId,
})

Implementation

ProjectRoleUser copyWith({String? accountId}) {
  return ProjectRoleUser(
    accountId: accountId ?? this.accountId,
  );
}