FlutterLogo constructor

const FlutterLogo({
  1. Key? key,
  2. double? size,
  3. MaterialColor? colors,
  4. Color textColor = const Color(0xFF616161),
  5. FlutterLogoStyle style = FlutterLogoStyle.markOnly,
  6. Duration duration = const Duration(milliseconds: 750),
  7. Curve curve = Curves.fastOutSlowIn,
})

Creates a widget that paints the Flutter logo.

The size defaults to the value given by the current IconTheme.

Implementation

const FlutterLogo({
  Key? key,
  this.size,
  this.colors,
  this.textColor = const Color(0xFF616161),
  this.style = FlutterLogoStyle.markOnly,
  this.duration = const Duration(milliseconds: 750),
  this.curve = Curves.fastOutSlowIn,
}) : super(key: key);