BrandMark constructor

const BrandMark({
  1. Key? key,
  2. double size = 48.0,
  3. Color? color,
})

Implementation

const BrandMark({
  Key? key,
  this.size = 48.0,
  this.color,
}) : super(key: key);