LogoContainer constructor

const LogoContainer({
  1. String? uri,
  2. Widget? child,
  3. String pathImages = 'lib/assets/images/',
  4. String? package,
  5. double? width,
  6. double? height,
  7. Key? key,
})

Implementation

const LogoContainer({
  String? uri,
  Widget? child,
  String pathImages = 'lib/assets/images/',
  String? package,
  double? width,
  double? height,
  Key? key,
})  : _uri = uri,
      _child = child,
      _width = width,
      _height = height,
      _package = package,
      _pathImages = pathImages,
      super(key: key);