tagScreenName static method

Future<void> tagScreenName(
  1. String screenName
)

This method is used for tagging Screen with custom names

screenName is String.

Name to be displayed in Dashboard By Default this is done automatically the name field specified in Route will be considered as screenName

Implementation

static Future<void> tagScreenName(String screenName) async {
  await _channel.invokeMethod('tagScreenName', {"key": screenName});
}