GoogleMonitoringV3Range.fromJson constructor
      
      GoogleMonitoringV3Range.fromJson(
    
    
- Map json_
 
Implementation
GoogleMonitoringV3Range.fromJson(core.Map json_)
    : this(
        max: json_.containsKey('max')
            ? (json_['max'] as core.num).toDouble()
            : null,
        min: json_.containsKey('min')
            ? (json_['min'] as core.num).toDouble()
            : null,
      );