FontOptions constructor

const FontOptions({
  1. String fontFamily = 'Main',
  2. FontWeight fontWeight = FontWeight.normal,
  3. FontStyle fontShape = FontStyle.normal,
  4. List<FontOptions> fallback = const [],
})

Implementation

const FontOptions({
  this.fontFamily = 'Main',
  this.fontWeight = FontWeight.normal,
  this.fontShape = FontStyle.normal,
  this.fallback = const [],
});