TabProperties.fromJson constructor

TabProperties.fromJson(
  1. Map json_
)

Implementation

TabProperties.fromJson(core.Map json_)
  : this(
      index: json_['index'] as core.int?,
      nestingLevel: json_['nestingLevel'] as core.int?,
      parentTabId: json_['parentTabId'] as core.String?,
      tabId: json_['tabId'] as core.String?,
      title: json_['title'] as core.String?,
    );