copyWith method

AccountIdentity copyWith({
  1. List<Owner>? owners,
})

Implementation

AccountIdentity copyWith({List<Owner>? owners}) {
  return AccountIdentity(owners: owners ?? this.owners);
}