DeviceRam.fromJson constructor

DeviceRam.fromJson(
  1. Map json_
)

Implementation

DeviceRam.fromJson(core.Map json_)
    : this(
        maxBytes: json_.containsKey('maxBytes')
            ? json_['maxBytes'] as core.String
            : null,
        minBytes: json_.containsKey('minBytes')
            ? json_['minBytes'] as core.String
            : null,
      );