tencent_cloud_chat_uikit_fl.../lib/ui/constants/time.dart

10 lines
210 B
Dart

// ignore_for_file: constant_identifier_names
class TimeConst {
static const DAY_SEC = 86400;
static const HOUR_SEC = 3600;
static const MIN_SEC = 60;
static const SEC_SERIES = [HOUR_SEC, MIN_SEC];
}