GSIButtonConfiguration constructor

GSIButtonConfiguration({
  1. GSIButtonType? type,
  2. GSIButtonTheme? theme,
  3. GSIButtonSize? size,
  4. GSIButtonText? text,
  5. GSIButtonShape? shape,
  6. GSIButtonLogoAlignment? logoAlignment,
  7. double? minimumWidth,
  8. String? locale,
})

Constructs a button configuration object.

Implementation

GSIButtonConfiguration({
  this.type,
  this.theme,
  this.size,
  this.text,
  this.shape,
  this.logoAlignment,
  this.minimumWidth,
  this.locale,
}) : assert(minimumWidth == null || minimumWidth > 0);