copyWith method

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

Implementation

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