ObjectStorageStats.fromJson constructor

ObjectStorageStats.fromJson(
  1. Map json_
)

Implementation

ObjectStorageStats.fromJson(core.Map json_)
  : this(
      cacheBytesRead: json_['cacheBytesRead'] as core.String?,
      cloudProvider: json_['cloudProvider'] as core.String?,
      objectStorageBytesRead: json_['objectStorageBytesRead'] as core.String?,
    );