ProjectReference.fromJson constructor

ProjectReference.fromJson(
  1. Map json_
)

Implementation

ProjectReference.fromJson(core.Map json_)
    : this(
        projectId: json_.containsKey('projectId')
            ? json_['projectId'] as core.String
            : null,
      );