SparkLoggingInfo.fromJson constructor

SparkLoggingInfo.fromJson(
  1. Map json_
)

Implementation

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