UnknownSlimWidget constructor

UnknownSlimWidget(
  1. String headerText, {
  2. Color? backgroundColor,
  3. Key? key,
})

Implementation

UnknownSlimWidget(String headerText, {Color? backgroundColor, Key? key})
    : super(
          leftIcon: UnknownItemIcon(
              size: 20.0,
              color: WidgetStyleConstants.deviceDetailIconColorActive),
          headerText: Text(headerText,
              style: TextStyle(
                  fontSize: 20, color: WidgetStyleConstants.darkTextColor)),
          backgroundColor: backgroundColor,
          key: key);