IconsOutlineButton constructor

IconsOutlineButton(
  1. {@required dynamic onPressed(
      ),
    1. @required String text,
    2. ShapeBorder shape,
    3. Color color,
    4. IconData iconData,
    5. Color iconColor,
    6. TextStyle textStyle}
    )

    Implementation

    IconsOutlineButton({
      @required this.onPressed,
      @required this.text,
      this.shape,
      this.color,
      this.iconData,
      this.iconColor,
      this.textStyle,
    })  : assert(onPressed != null),
          assert(text != null);