CheckCompatibilityResponse.fromJson constructor
      
      CheckCompatibilityResponse.fromJson(
    
    
- Map json_
Implementation
CheckCompatibilityResponse.fromJson(core.Map json_)
  : this(
      isCompatible: json_['is_compatible'] as core.bool?,
      messages:
          (json_['messages'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );