SnapchatButtonFontOptions constructor

SnapchatButtonFontOptions({
  1. double? fontSize,
  2. FontWeight? fontWeight,
  3. String? fontFamily,
  4. List<String>? fontFamilyFallback,
  5. List<FontFeature>? fontFeatures,
  6. FontStyle? fontStyle,
})

Custom Font Options

WARNING: Changing these will mean the button no longer follows Snapchat's Brand Guidelines

Implementation

SnapchatButtonFontOptions({
  this.fontSize,
  this.fontWeight,
  this.fontFamily,
  this.fontFamilyFallback,
  this.fontFeatures,
  this.fontStyle,
});