LineIcon.keyboardAlt constructor

const LineIcon.keyboardAlt({
  1. Key? key,
  2. double? size,
  3. Color? color,
  4. String? semanticLabel,
  5. TextDirection? textDirection,
})

Constructor for keyboard_1 icon Name keyboard_1 turns into flutterish keyboardAlt

Implementation

const LineIcon.keyboardAlt({
  Key? key,
  double? size,
  Color? color,
  String? semanticLabel,
  TextDirection? textDirection,
}) : super(
        LineIcons.keyboardAlt,
        key: key,
        size: size,
        color: color,
        semanticLabel: semanticLabel,
        textDirection: textDirection,
      );