ConstraintSummary.fromJson constructor

ConstraintSummary.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ConstraintSummary.fromJson(Map<String, dynamic> json) {
  return ConstraintSummary(
    description: json['Description'] as String?,
    type: json['Type'] as String?,
  );
}