videoConference static method

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

regular: video-conference thin: video-conference light: video-conference bold: video-conference fill: video-conference duotone: video-conference

Implementation

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