sendLyrics method

Future<void> sendLyrics(
  1. String lyrics
)

Implementation

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