FloatingViewTheme constructor

const FloatingViewTheme({
  1. double elevation = 2,
  2. Color? backgroundColor,
  3. double radius = 12,
})

Creates a FloatingViewTheme.

All parameters have default values.

Implementation

const FloatingViewTheme({
  this.elevation = 2,
  this.backgroundColor,
  this.radius = 12,
});