sendSongTitle method

Future<void> sendSongTitle(
  1. String title
)

Implementation

Future<void> sendSongTitle(String title) async {
  await mConnMethodChannel
      .invokeMethod("sendSongTitle", <String, String>{"title": title});
}