of static method

String of(
  1. AppSchemaDomain domain,
  2. String schema
)

Builds a '<domain>.<schema>' identifier for a schema not named in this catalog. The schema name must match Apple's documented schema for the domain (the system matches by string).

Implementation

static String of(AppSchemaDomain domain, String schema) =>
    '${domain.keyword}.$schema';