separator property

String separator

Implementation

String get separator {
  switch (this) {
    case VLogType.Debug:
      return "-----------🟠🟠🟠🟠🟠🟠-----------";
    case VLogType.Error:
      return "-----------🔴🔴🔴🔴🔴🔴-----------";
    case VLogType.Info:
      return "-----------🔵🔵🔵🔵🔵🔵-----------";
  }
  return "";
}