SnapchatButton constructor

const SnapchatButton({
  1. Key? key,
  2. required Snapkit snapkit,
  3. SnapchatButtonColors buttonColor = SnapchatButtonColors.YELLOW,
  4. SnapchatButtonFontOptions? fontOptions,
})

Creates a new SnapchatButton that by default conforms to Snapchat's Brand Guidelines

Implementation

const SnapchatButton({
  Key? key,
  required this.snapkit,
  this.buttonColor = SnapchatButtonColors.YELLOW,
  this.fontOptions,
}) : super(key: key);