setNotificationTitle method
Set notification title (shown when connected)
Implementation
@override
Future<bool> setNotificationTitle(String title) async {
final result = await methodChannel.invokeMethod<bool>(
'set_notification_title',
title,
);
return result ?? false;
}