peace static method

PhosphorIconData peace([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: peace thin: peace light: peace bold: peace fill: peace duotone: peace

Implementation

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