StringAttributeConstraintsType.fromJson constructor

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

Implementation

factory StringAttributeConstraintsType.fromJson(Map<String, dynamic> json) {
  return StringAttributeConstraintsType(
    maxLength: json['MaxLength'] as String?,
    minLength: json['MinLength'] as String?,
  );
}