ApplicationInfo.fromJson constructor

ApplicationInfo.fromJson(
  1. Map json_
)

Implementation

ApplicationInfo.fromJson(core.Map json_)
  : this(
      applicationContextIngestionStatus:
          json_['applicationContextIngestionStatus'] as core.String?,
      applicationId: json_['applicationId'] as core.String?,
      attempts:
          (json_['attempts'] as core.List?)
              ?.map(
                (value) => ApplicationAttemptInfo.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      coresGranted: json_['coresGranted'] as core.int?,
      coresPerExecutor: json_['coresPerExecutor'] as core.int?,
      maxCores: json_['maxCores'] as core.int?,
      memoryPerExecutorMb: json_['memoryPerExecutorMb'] as core.int?,
      name: json_['name'] as core.String?,
      quantileDataStatus: json_['quantileDataStatus'] as core.String?,
    );