copyWith method
Implementation
UserContextVariable copyWith({String? accountId, String? type}) {
return UserContextVariable(
accountId: accountId ?? this.accountId,
type: type ?? this.type,
);
}
UserContextVariable copyWith({String? accountId, String? type}) {
return UserContextVariable(
accountId: accountId ?? this.accountId,
type: type ?? this.type,
);
}