AllocationAggregateReservationReservedResourceInfo.fromJson constructor

AllocationAggregateReservationReservedResourceInfo.fromJson(
  1. Map json_
)

Implementation

AllocationAggregateReservationReservedResourceInfo.fromJson(core.Map json_)
  : this(
      accelerator: json_.containsKey('accelerator')
          ? AllocationAggregateReservationReservedResourceInfoAccelerator.fromJson(
              json_['accelerator'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );