@salesforce/sf-plugins-core
    Preparing search index...

    Variable requiredHubFlagConst

    requiredHubFlag: FlagDefinition<Org, CustomOptions, {}> = ...

    A required org that is a devHub Will throw if the specified org does not exist Will default to the default dev hub if one is not specified Will throw if no default deb hub exists and none is specified

    import { Flags } from '@salesforce/sf-plugins-core';
    public static flags = {
    // setting length or prefix
    'target-org': requiredHub(),
    // adding properties
    'flag2': requiredHub({
    required: true,
    description: 'flag2 description',
    char: 'h'
    }),
    }