doorOpen property

AppIconData get doorOpen

regular: door-open thin: door-open light: door-open bold: door-open fill: door-open duotone: door-open

Implementation

static AppIconData get doorOpen {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.doorOpen;
    case AppIconsStyle.thin:
      return AppIconsThin.doorOpen;
    case AppIconsStyle.light:
      return AppIconsLight.doorOpen;
    case AppIconsStyle.bold:
      return AppIconsBold.doorOpen;
    case AppIconsStyle.fill:
      return AppIconsFill.doorOpen;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.doorOpen;
  }
}