copyWith method

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

Implementation

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