IconModel constructor

IconModel({
  1. String? id,
  2. String? name,
  3. String? fontFamily,
  4. String? cssPrefixText,
  5. String? description,
  6. List<IconModelGlyphs>? glyphs,
})

Implementation

IconModel({
  this.id,
  this.name,
  this.fontFamily,
  this.cssPrefixText,
  this.description,
  this.glyphs,
});