SuperLargeTitle constructor

SuperLargeTitle({
  1. String largeTitle = "Hello Super Human",
  2. List<Widget>? actions,
  3. TextStyle textStyle = const TextStyle(inherit: false, fontFamily: '.SF Pro Display', fontSize: 34.0, fontWeight: FontWeight.w700, letterSpacing: 0.41),
  4. double height = kToolbarHeight,
  5. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 15.0),
  6. bool enabled = true,
})

Implementation

SuperLargeTitle({
  this.largeTitle = "Hello Super Human",
  this.actions,
  this.textStyle = const TextStyle(
    inherit: false,
    fontFamily: '.SF Pro Display',
    fontSize: 34.0,
    fontWeight: FontWeight.w700,
    letterSpacing: 0.41,
  ),
  this.height = kToolbarHeight,
  this.padding = const EdgeInsets.symmetric(horizontal: 15.0),
  this.enabled = true,
});