play method

Future<bool> play()

Implementation

Future<bool> play() async {
  bool isPlayer = false;
  isPlayer = await _channel.invokeMethod("play",{"channel":channel});
  return isPlayer;

}