cms property

String get cms

Implementation

String get cms {
  final cms = argResults['cms'] as String? ?? defaultCMS;
  if (cms != defaultCMS) {
    usageException(
      'The CMS "$cms" is not supported. Only "$defaultCMS" is supported at this time.',
    );
  }
  return cms;
}