copyWith method

UserContextVariable copyWith({
  1. String? accountId,
  2. String? type,
})

Implementation

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