SqlOutOfDiskReport.fromJson constructor
SqlOutOfDiskReport.fromJson(
- 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,
);