CapabilityOwners constructor

CapabilityOwners({
  1. Iterable<Owner>? owners,
})

Implementation

factory CapabilityOwners({
  $core.Iterable<Owner>? owners,
}) {
  final _result = create();
  if (owners != null) {
    _result.owners.addAll(owners);
  }
  return _result;
}