FLDyInkWellUnitModel constructor

FLDyInkWellUnitModel({
  1. String? uniqueId,
  2. String? unitName,
  3. FLDyUnitAlign? align,
  4. String? flex,
  5. FLDyUnitPositioned? positioned,
  6. FLDyUnitModel? child,
  7. List<FLDyUnitModel>? children,
  8. FLDyAction? onTap,
  9. FLDyAction? onDoubleTap,
  10. FLDyAction? onLongPress,
  11. String? focusColor,
  12. String? hoverColor,
  13. String? highlightColor,
  14. String? splashColor,
})

Implementation

FLDyInkWellUnitModel({
  String? uniqueId,
  String? unitName,
  FLDyUnitAlign? align,
  String? flex,
  FLDyUnitPositioned? positioned,
  FLDyUnitModel? child,
  List<FLDyUnitModel>? children,
  this.onTap,
  this.onDoubleTap,
  this.onLongPress,
  this.focusColor,
  this.hoverColor,
  this.highlightColor,
  this.splashColor,
}) : super(
        uniqueId: uniqueId,
        unitName: unitName,
        align: align,
        flex: flex,
        positioned: positioned,
        child: child,
        children: children,
      );