CheckCompatibilityResponse.fromJson constructor

CheckCompatibilityResponse.fromJson(
  1. 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(),
    );