pencilSimpleLine static method
regular:
thin:
light:
bold:
fill:
duotone:
Implementation
static PhosphorIconData pencilSimpleLine(
[PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
switch (style) {
case PhosphorIconsStyle.regular:
return PhosphorIconsRegular.pencilSimpleLine;
case PhosphorIconsStyle.thin:
return PhosphorIconsThin.pencilSimpleLine;
case PhosphorIconsStyle.light:
return PhosphorIconsLight.pencilSimpleLine;
case PhosphorIconsStyle.bold:
return PhosphorIconsBold.pencilSimpleLine;
case PhosphorIconsStyle.fill:
return PhosphorIconsFill.pencilSimpleLine;
case PhosphorIconsStyle.duotone:
return PhosphorIconsDuotone.pencilSimpleLine;
}
}