CheckSchemaVersionValidityResponse.fromJson constructor
Implementation
factory CheckSchemaVersionValidityResponse.fromJson(
    Map<String, dynamic> json) {
  return CheckSchemaVersionValidityResponse(
    error: json['Error'] as String?,
    valid: json['Valid'] as bool?,
  );
}