SqlOutOfDiskReport.fromJson constructor

SqlOutOfDiskReport.fromJson(
  1. Map _json
)

Implementation

SqlOutOfDiskReport.fromJson(core.Map _json)
    : this(
        sqlMinRecommendedIncreaseSizeGb:
            _json.containsKey('sqlMinRecommendedIncreaseSizeGb')
                ? _json['sqlMinRecommendedIncreaseSizeGb'] as core.int
                : null,
        sqlOutOfDiskState: _json.containsKey('sqlOutOfDiskState')
            ? _json['sqlOutOfDiskState'] as core.String
            : null,
      );