toMap method

Map<String, String?> toMap()

Converts this screen debug information into a map.

Implementation

Map<String, String?> toMap() {
  return <String, String?>{
    'screenName': screenName,
    'filePath': filePath,
    'routeName': routeName,
    'extra': extra,
  };
}