getTabIdKey function

String? getTabIdKey(
  1. Map<String, dynamic> props
)

Implementation

String? getTabIdKey(Map<String, dynamic> props) {
  final tabId = props['tabId'] as String?;
  if (tabId == null) return null;

  return extractFirstPlaceholderKey(tabId);
}