StoryTypography constructor

StoryTypography({
  1. String? font = 'Roboto',
  2. double? fontSize = 15.0,
  3. String? fontStyle = 'normal',
  4. String? align = 'center',
  5. String? transform = 'normal',
})

Implementation

StoryTypography({
  this.font = 'Roboto',
  this.fontSize = 15.0,
  this.fontStyle = 'normal',
  this.align = 'center',
  this.transform = 'normal',
});