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