getStepsForDay method
Implementation
static Future<int> getStepsForDay({@required String dateStr}) async {
final int steps = await _channel.invokeMethod('fetchSteps', dateStr);
return steps;
}
static Future<int> getStepsForDay({@required String dateStr}) async {
final int steps = await _channel.invokeMethod('fetchSteps', dateStr);
return steps;
}