SkinContractFieldSpec constructor

const SkinContractFieldSpec(
  1. String name,
  2. SkinContractFieldType type, {
  3. bool required = true,
  4. List<String>? values,
  5. String? pattern,
})

Implementation

const SkinContractFieldSpec(
  this.name,
  this.type, {
  this.required = true,
  this.values,
  this.pattern,
});