standardizedHeader static method

Widget standardizedHeader(
  1. String headerText
)

Creates unified (color: Colors.white, fontWeight: FontWeight.bold) headers inside OPopupContent.standardizedText.

Implementation

static Widget standardizedHeader(String headerText) => standardizedText(
      headerText,
      style: TextStyle(
        color: Colors.white,
        fontWeight: FontWeight.bold,
      ),
    );