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