ExternalServiceCost.fromJson constructor

ExternalServiceCost.fromJson(
  1. Map json_
)

Implementation

ExternalServiceCost.fromJson(core.Map json_)
    : this(
        bytesBilled: json_['bytesBilled'] as core.String?,
        bytesProcessed: json_['bytesProcessed'] as core.String?,
        externalService: json_['externalService'] as core.String?,
        reservedSlotCount: json_['reservedSlotCount'] as core.String?,
        slotMs: json_['slotMs'] as core.String?,
      );