hrk_batteries 0.1.0-dev.2
hrk_batteries: ^0.1.0-dev.2 copied to clipboard
A library to accumulate required dart helper and utility codes
A library to accumulate required dart helper and utility codes
Features #
- Easy detection of whether code running in Test without hassle of conditional imports files
Getting started #
dart pub add hrk_batteries
Usage #
import 'package:hrk_batteries/hrk_batteries.dart';
void main() {
// Logger log = Logger();
// late Level level;
if (isDartOrFlutterTest()) {
// level = Level.INFO;
} else {
// level = Level.SEVERE;
}
// log.log(level, 'Needs Attention');
}