Frame constructor

Frame({
  1. Key? key,
  2. List<Widget> children = const [],
  3. dynamic styles,
  4. String? type,
  5. GestureTapCallback? onClick,
  6. Map<String, dynamic>? event = const {},
})

Implementation

Frame(
    {Key? key,
    this.children = const [],
    this.styles,
    this.type,
    this.onClick,
    this.event = const {}})
    : super(key: key) {
  mStyles = StylesMap.formMap(mergeStyle(this.styles));
}