ListOperationsResponse.fromJson constructor

ListOperationsResponse.fromJson(
  1. Map json_
)

Implementation

ListOperationsResponse.fromJson(core.Map json_)
    : this(
        missingZones: json_.containsKey('missingZones')
            ? (json_['missingZones'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        operations: json_.containsKey('operations')
            ? (json_['operations'] as core.List)
                .map((value) => Operation.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );