getUsageStatsDailyByPackage method
Implementation
@override
Future<List<dynamic>?> getUsageStatsDailyByPackage({
required int fromMillisecondsSinceEpoch,
required int toMillisecondsSinceEpoch,
}) async {
return await methodChannel
.invokeListMethod(MethodName.getUsageStatsDailyByPackage, {
'from': fromMillisecondsSinceEpoch,
'to': toMillisecondsSinceEpoch,
});
}