ScrollViewContainer constructor

ScrollViewContainer({
  1. Key? key,
  2. List<Widget> children = const [],
  3. Map? styles = const {},
})

Implementation

ScrollViewContainer({
  Key? key,
  this.children = const [],
  this.styles = const {},
}) : super(key: key) {
  mStyles = StylesMap.formMap(styles ?? {});
}