DeviceLogoDrawable constructor

const DeviceLogoDrawable({
  1. Key? key,
  2. double width = 28,
  3. double height = 50,
  4. Color color = Colors.white,
})

Implementation

const DeviceLogoDrawable({
  Key? key,
  this.width = 28,
  this.height = 50,
  this.color = Colors.white,
}) : super(key: key);