getMethod static method

String getMethod(
  1. LogOption option,
  2. Object object
)

Log output method.

Implementation

static String getMethod(LogOption option, Object object) {
  final String content =
      option.language == Language.en ? ' METHOD: $object' : '方法: $object';
  return CLog.coloringMethod(option.colorTheme!, content);
}