UIElementTooDeep.fromJson constructor

UIElementTooDeep.fromJson(
  1. Map _json
)

Implementation

UIElementTooDeep.fromJson(core.Map _json)
    : this(
        depth: _json.containsKey('depth') ? _json['depth'] as core.int : null,
        screenId: _json.containsKey('screenId')
            ? _json['screenId'] as core.String
            : null,
        screenStateId: _json.containsKey('screenStateId')
            ? _json['screenStateId'] as core.String
            : null,
      );