ImageView constructor

ImageView({
  1. Key? key,
  2. Map styles = const {},
  3. String url = '',
  4. String? className,
  5. List<Widget> children = const [],
})

Implementation

ImageView(
    {Key? key,
    this.styles = const {},
    this.url = '',
    this.className,
    this.children = const []}) {
  this.mStyles = StylesMap.formMap(this.styles);
}