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