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