STDesignIr constructor

const STDesignIr({
  1. required String variableName,
  2. required String extensionName,
  3. required STColorsIr colors,
  4. String? partOf,
  5. STRadiusIr? radius,
  6. STTypographyIr? typography,
  7. STComponentsIr? components,
  8. List<STExtraIr> extras = const [],
})

Implementation

const STDesignIr({
  required this.variableName,
  required this.extensionName,
  required this.colors,
  this.partOf,
  this.radius,
  this.typography,
  this.components,
  this.extras = const [],
});