Owner constructor

Owner({
  1. OwnerType? type,
  2. String? id,
})

Implementation

factory Owner({
  OwnerType? type,
  $core.String? id,
}) {
  final result = create();
  if (type != null) result.type = type;
  if (id != null) result.id = id;
  return result;
}