Image constructor

const Image({
  1. Key? key,
  2. required String src,
  3. StyleSheet styleSheet = const StyleSheet(),
})

Implementation

const Image({
  Key? key,
  required this.src,
  this.styleSheet = const StyleSheet(),
}) : super(key: key);