JobStatistics5.fromJson constructor

JobStatistics5.fromJson(
  1. Map json_
)

Implementation

JobStatistics5.fromJson(core.Map json_)
    : this(
        copiedLogicalBytes: json_.containsKey('copiedLogicalBytes')
            ? json_['copiedLogicalBytes'] as core.String
            : null,
        copiedRows: json_.containsKey('copiedRows')
            ? json_['copiedRows'] as core.String
            : null,
      );