PanelKitPageTheme constructor

const PanelKitPageTheme({
  1. Color backgroundColor = const Color(0xFF131314),
  2. Color headerBackgroundColor = const Color(0xFF1B1B18),
  3. TextStyle headerTextStyle = const TextStyle(fontFamily: "Poppins", fontSize: 26, fontWeight: FontWeight.w500, color: Colors.white),
})

Implementation

const PanelKitPageTheme({
  this.backgroundColor = const Color(0xFF131314),
  this.headerBackgroundColor = const Color(0xFF1B1B18),
  this.headerTextStyle = const TextStyle(fontFamily: "Poppins", fontSize: 26, fontWeight: FontWeight.w500, color: Colors.white),
});