gg_typedefs 1.1.3 gg_typedefs: ^1.1.3 copied to clipboard
This package provides a bunch of typedefs used in various of our projects.
example/gg_typedefs_example.dart
import 'package:gg_typedefs/gg_typedefs.dart';
void main() {
// Demonstrate time typedefs
GgMicroseconds microseconds = 0.0;
print(microseconds);
GgMilliseconds milliseconds = 0.0;
print(milliseconds);
GgSeconds seconds = 0.0;
print(seconds);
GgHours hours = 0.0;
print(hours);
GgDays days = 0.0;
print(days);
}