handsPraying static method

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

regular: hands-praying thin: hands-praying light: hands-praying bold: hands-praying fill: hands-praying duotone: hands-praying

Implementation

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