cellSignalFull static method

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

regular: cell-signal-full thin: cell-signal-full light: cell-signal-full bold: cell-signal-full fill: cell-signal-full duotone: cell-signal-full

Implementation

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