UsageSnapshot.fromJson constructor

UsageSnapshot.fromJson(
  1. Map json_
)

Implementation

UsageSnapshot.fromJson(core.Map json_)
  : this(
      acceleratorType: json_['acceleratorType'] as core.String?,
      milliAccelerator: json_['milliAccelerator'] as core.String?,
      milliDcu: json_['milliDcu'] as core.String?,
      milliDcuPremium: json_['milliDcuPremium'] as core.String?,
      milliSlot: json_['milliSlot'] as core.String?,
      shuffleStorageGb: json_['shuffleStorageGb'] as core.String?,
      shuffleStorageGbPremium:
          json_['shuffleStorageGbPremium'] as core.String?,
      snapshotTime: json_['snapshotTime'] as core.String?,
    );