ProjectInfo.fromJson constructor

ProjectInfo.fromJson(
  1. Map _json
)

Implementation

ProjectInfo.fromJson(core.Map _json)
    : this(
        displayName: _json.containsKey('displayName')
            ? _json['displayName'] as core.String
            : null,
        locationId: _json.containsKey('locationId')
            ? _json['locationId'] as core.String
            : null,
        project: _json.containsKey('project')
            ? _json['project'] as core.String
            : null,
      );