NumberAttributeConstraintsType.fromJson constructor

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

Implementation

factory NumberAttributeConstraintsType.fromJson(Map<String, dynamic> json) {
  return NumberAttributeConstraintsType(
    maxValue: json['MaxValue'] as String?,
    minValue: json['MinValue'] as String?,
  );
}