ListOperationsResponse.fromJson constructor

ListOperationsResponse.fromJson(
  1. Map json_
)

Implementation

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