ByteUsage.fromJson constructor

ByteUsage.fromJson(
  1. Map json_
)

Implementation

ByteUsage.fromJson(core.Map json_)
  : this(
      capacityBytes: json_['capacityBytes'] as core.String?,
      usedBytes: json_['usedBytes'] as core.String?,
    );