setTitle method

Future<void> setTitle(
  1. String newTitle
)

Implementation

Future<void> setTitle(String newTitle) async {
  await _invokeMainChannel("setNotificationTitle", <dynamic>[newTitle]);
}