UpCode constructor

const UpCode({
  1. Key? key,
  2. String? code,
  3. String? assetCode,
  4. double codeHeight = 256,
  5. double maxHeight = 256,
  6. EdgeInsetsGeometry padding = const EdgeInsets.only(top: 12),
  7. Color? backgroundColor,
})

Implementation

const UpCode({
  super.key,
  this.code,
  this.assetCode,
  this.codeHeight = 256,
  this.maxHeight = 256,
  this.padding = const EdgeInsets.only(top: 12),
  this.backgroundColor,
});