RddPartitionInfo.fromJson constructor

RddPartitionInfo.fromJson(
  1. Map json_
)

Implementation

RddPartitionInfo.fromJson(core.Map json_)
  : this(
      blockName: json_['blockName'] as core.String?,
      diskUsed: json_['diskUsed'] as core.String?,
      executors:
          (json_['executors'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      memoryUsed: json_['memoryUsed'] as core.String?,
      storageLevel: json_['storageLevel'] as core.String?,
    );