getSupport static method

String getSupport(
  1. LogOption option
)

Head and Footer of log

Implementation

static String getSupport(LogOption option) {
  final String content = option.language == Language.en
      ? 'SUPPORT: Served by IDKit '
      : '支持: 由 IDKit 提供服务';
  return CLog.coloringMethod(option.colorTheme!, content);
}