handshake static method

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

regular: handshake thin: handshake light: handshake bold: handshake fill: handshake duotone: handshake

Implementation

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