MetricsApp constructor
MetricsApp({})
Implementation
MetricsApp({
Key? key,
required this.child,
required this.metrics,
this.defaultMetric,
}) : assert(metrics.isNotEmpty),
super(key: key) {
// MetricsApp Init
}