playPlayer method
Implementation
static Future<void> playPlayer() async {
try {
await _channel.invokeMethod('playPlayer');
} on PlatformException catch (e) {
print(e.details);
}
}
static Future<void> playPlayer() async {
try {
await _channel.invokeMethod('playPlayer');
} on PlatformException catch (e) {
print(e.details);
}
}