diff --git a/lib/src/component/prop_mixins.dart b/lib/src/component/prop_mixins.dart index 1e5406ef2..3c28115ce 100644 --- a/lib/src/component/prop_mixins.dart +++ b/lib/src/component/prop_mixins.dart @@ -77,13 +77,14 @@ abstract class _$DomPropsMixin { Map style; - String accept, acceptCharset, accessKey, action, alt, autoComplete, charSet, classID, className, content, contextMenu, - coords, crossOrigin, data, dateTime, dir, encType, form, href, hrefLang, htmlFor, httpEquiv, id, lang, list, manifest, media, mediaGroup, - method, name, pattern, placeholder, poster, preload, radioGroup, rel, role, sandbox, scope, scrolling, shape, sizes, src, - srcDoc, srcSet, target, title, useMap, wmode; + String className, title, id; - dynamic allowTransparency, cellPadding, cellSpacing, colSpan, contentEditable, download, draggable, frameBorder, height, icon, label, - max, maxLength, min, rowSpan, spellCheck, step, tabIndex, type, value, width; + dynamic accept, acceptCharset, accessKey, action, allowTransparency, alt, autoComplete, cellPadding, cellSpacing, + charSet, classID, colSpan, content, contentEditable, contextMenu, coords, crossOrigin, data, dateTime, + dir, download, draggable, encType, form, frameBorder, height, href, hrefLang, htmlFor, httpEquiv, icon, label, + lang, list, manifest, max, maxLength, media, mediaGroup, method, min, name, pattern, placeholder, + poster, preload, radioGroup, rel, role, rowSpan, sandbox, scope, scrolling, shape, sizes, spellCheck, src, srcDoc, + srcSet, step, tabIndex, target, type, useMap, value, width, wmode; AnimationEventCallback onAnimationEnd, onAnimationIteration, onAnimationStart; ClipboardEventCallback onCopy, onCut, onPaste; @@ -127,13 +128,11 @@ abstract class $SvgPropsMixin {} abstract class _$SvgPropsMixin { Map get props; - String clipPath, d, fill, fontFamily, gradientTransform, gradientUnits, markerEnd, markerMid, markerStart, - patternContentUnits, patternUnits, points, preserveAspectRatio, spreadMethod, stopColor, stroke, - strokeLinecap, textAnchor, transform, version, viewBox, xlinkActuate, xlinkArcrole, xlinkHref, xlinkRole, - xlinkShow, xlinkTitle, xlinkType, xmlBase, xmlLang, xmlSpace; - - dynamic cx, cy, dx, dy, fillOpacity, fontSize, fx, fy, offset, opacity, r, rx, ry, stopOpacity, strokeDasharray, - strokeOpacity, strokeWidth, x1, x2, x, y1, y2, y; + dynamic clipPath, cx, cy, d, dx, dy, fill, fillOpacity, fontFamily, fontSize, fx, fy, gradientTransform, + gradientUnits, markerEnd, markerMid, markerStart, offset, opacity, patternContentUnits, patternUnits, points, + preserveAspectRatio, r, rx, ry, spreadMethod, stopColor, stopOpacity, stroke, strokeDasharray, strokeLinecap, + strokeOpacity, strokeWidth, textAnchor, transform, version, viewBox, x1, x2, x, xlinkActuate, xlinkArcrole, + xlinkHref, xlinkRole, xlinkShow, xlinkTitle, xlinkType, xmlBase, xmlLang, xmlSpace, y1, y2, y; } /// This class is only present to allow for consumers which have used the /// --backwards-compat flag with over_react_codemod to statically analyze: diff --git a/lib/src/component/prop_mixins.over_react.g.dart b/lib/src/component/prop_mixins.over_react.g.dart index 519566a8f..6b542e596 100644 --- a/lib/src/component/prop_mixins.over_react.g.dart +++ b/lib/src/component/prop_mixins.over_react.g.dart @@ -295,668 +295,671 @@ abstract class DomPropsMixin implements _$DomPropsMixin { set style(Map value) => props[_$key__style___$DomPropsMixin] = value; + /// + @override + String get className => + props[_$key__className___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set className(String value) => + props[_$key__className___$DomPropsMixin] = value; + + /// + @override + String get title => + props[_$key__title___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set title(String value) => props[_$key__title___$DomPropsMixin] = value; + + /// + @override + String get id => + props[_$key__id___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set id(String value) => props[_$key__id___$DomPropsMixin] = value; + /// @override - String get accept => + dynamic get accept => props[_$key__accept___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set accept(String value) => props[_$key__accept___$DomPropsMixin] = value; + set accept(dynamic value) => props[_$key__accept___$DomPropsMixin] = value; /// @override - String get acceptCharset => + dynamic get acceptCharset => props[_$key__acceptCharset___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set acceptCharset(String value) => + set acceptCharset(dynamic value) => props[_$key__acceptCharset___$DomPropsMixin] = value; /// @override - String get accessKey => + dynamic get accessKey => props[_$key__accessKey___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set accessKey(String value) => + set accessKey(dynamic value) => props[_$key__accessKey___$DomPropsMixin] = value; /// @override - String get action => + dynamic get action => props[_$key__action___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set action(String value) => props[_$key__action___$DomPropsMixin] = value; + set action(dynamic value) => props[_$key__action___$DomPropsMixin] = value; + + /// + @override + dynamic get allowTransparency => + props[_$key__allowTransparency___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set allowTransparency(dynamic value) => + props[_$key__allowTransparency___$DomPropsMixin] = value; /// @override - String get alt => + dynamic get alt => props[_$key__alt___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set alt(String value) => props[_$key__alt___$DomPropsMixin] = value; + set alt(dynamic value) => props[_$key__alt___$DomPropsMixin] = value; /// @override - String get autoComplete => + dynamic get autoComplete => props[_$key__autoComplete___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set autoComplete(String value) => + set autoComplete(dynamic value) => props[_$key__autoComplete___$DomPropsMixin] = value; + /// + @override + dynamic get cellPadding => + props[_$key__cellPadding___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set cellPadding(dynamic value) => + props[_$key__cellPadding___$DomPropsMixin] = value; + + /// + @override + dynamic get cellSpacing => + props[_$key__cellSpacing___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set cellSpacing(dynamic value) => + props[_$key__cellSpacing___$DomPropsMixin] = value; + /// @override - String get charSet => + dynamic get charSet => props[_$key__charSet___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set charSet(String value) => props[_$key__charSet___$DomPropsMixin] = value; + set charSet(dynamic value) => props[_$key__charSet___$DomPropsMixin] = value; /// @override - String get classID => + dynamic get classID => props[_$key__classID___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set classID(String value) => props[_$key__classID___$DomPropsMixin] = value; + set classID(dynamic value) => props[_$key__classID___$DomPropsMixin] = value; - /// + /// @override - String get className => - props[_$key__className___$DomPropsMixin] ?? + dynamic get colSpan => + props[_$key__colSpan___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set className(String value) => - props[_$key__className___$DomPropsMixin] = value; + set colSpan(dynamic value) => props[_$key__colSpan___$DomPropsMixin] = value; /// @override - String get content => + dynamic get content => props[_$key__content___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set content(String value) => props[_$key__content___$DomPropsMixin] = value; + set content(dynamic value) => props[_$key__content___$DomPropsMixin] = value; + + /// + @override + dynamic get contentEditable => + props[_$key__contentEditable___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set contentEditable(dynamic value) => + props[_$key__contentEditable___$DomPropsMixin] = value; /// @override - String get contextMenu => + dynamic get contextMenu => props[_$key__contextMenu___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set contextMenu(String value) => + set contextMenu(dynamic value) => props[_$key__contextMenu___$DomPropsMixin] = value; /// @override - String get coords => + dynamic get coords => props[_$key__coords___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set coords(String value) => props[_$key__coords___$DomPropsMixin] = value; + set coords(dynamic value) => props[_$key__coords___$DomPropsMixin] = value; /// @override - String get crossOrigin => + dynamic get crossOrigin => props[_$key__crossOrigin___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set crossOrigin(String value) => + set crossOrigin(dynamic value) => props[_$key__crossOrigin___$DomPropsMixin] = value; /// @override - String get data => + dynamic get data => props[_$key__data___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set data(String value) => props[_$key__data___$DomPropsMixin] = value; + set data(dynamic value) => props[_$key__data___$DomPropsMixin] = value; /// @override - String get dateTime => + dynamic get dateTime => props[_$key__dateTime___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set dateTime(String value) => props[_$key__dateTime___$DomPropsMixin] = value; + set dateTime(dynamic value) => + props[_$key__dateTime___$DomPropsMixin] = value; /// @override - String get dir => + dynamic get dir => props[_$key__dir___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set dir(String value) => props[_$key__dir___$DomPropsMixin] = value; + set dir(dynamic value) => props[_$key__dir___$DomPropsMixin] = value; + + /// + @override + dynamic get download => + props[_$key__download___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set download(dynamic value) => + props[_$key__download___$DomPropsMixin] = value; + + /// + @override + dynamic get draggable => + props[_$key__draggable___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set draggable(dynamic value) => + props[_$key__draggable___$DomPropsMixin] = value; /// @override - String get encType => + dynamic get encType => props[_$key__encType___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set encType(String value) => props[_$key__encType___$DomPropsMixin] = value; + set encType(dynamic value) => props[_$key__encType___$DomPropsMixin] = value; /// @override - String get form => + dynamic get form => props[_$key__form___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set form(String value) => props[_$key__form___$DomPropsMixin] = value; + set form(dynamic value) => props[_$key__form___$DomPropsMixin] = value; + + /// + @override + dynamic get frameBorder => + props[_$key__frameBorder___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set frameBorder(dynamic value) => + props[_$key__frameBorder___$DomPropsMixin] = value; + + /// + @override + dynamic get height => + props[_$key__height___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set height(dynamic value) => props[_$key__height___$DomPropsMixin] = value; /// @override - String get href => + dynamic get href => props[_$key__href___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set href(String value) => props[_$key__href___$DomPropsMixin] = value; + set href(dynamic value) => props[_$key__href___$DomPropsMixin] = value; /// @override - String get hrefLang => + dynamic get hrefLang => props[_$key__hrefLang___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set hrefLang(String value) => props[_$key__hrefLang___$DomPropsMixin] = value; + set hrefLang(dynamic value) => + props[_$key__hrefLang___$DomPropsMixin] = value; /// @override - String get htmlFor => + dynamic get htmlFor => props[_$key__htmlFor___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set htmlFor(String value) => props[_$key__htmlFor___$DomPropsMixin] = value; + set htmlFor(dynamic value) => props[_$key__htmlFor___$DomPropsMixin] = value; /// @override - String get httpEquiv => + dynamic get httpEquiv => props[_$key__httpEquiv___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set httpEquiv(String value) => + set httpEquiv(dynamic value) => props[_$key__httpEquiv___$DomPropsMixin] = value; - /// + /// @override - String get id => - props[_$key__id___$DomPropsMixin] ?? + dynamic get icon => + props[_$key__icon___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set id(String value) => props[_$key__id___$DomPropsMixin] = value; + set icon(dynamic value) => props[_$key__icon___$DomPropsMixin] = value; + + /// + @override + dynamic get label => + props[_$key__label___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set label(dynamic value) => props[_$key__label___$DomPropsMixin] = value; /// @override - String get lang => + dynamic get lang => props[_$key__lang___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set lang(String value) => props[_$key__lang___$DomPropsMixin] = value; + set lang(dynamic value) => props[_$key__lang___$DomPropsMixin] = value; /// @override - String get list => + dynamic get list => props[_$key__list___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set list(String value) => props[_$key__list___$DomPropsMixin] = value; + set list(dynamic value) => props[_$key__list___$DomPropsMixin] = value; /// @override - String get manifest => + dynamic get manifest => props[_$key__manifest___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set manifest(String value) => props[_$key__manifest___$DomPropsMixin] = value; + set manifest(dynamic value) => + props[_$key__manifest___$DomPropsMixin] = value; + + /// + @override + dynamic get max => + props[_$key__max___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set max(dynamic value) => props[_$key__max___$DomPropsMixin] = value; + + /// + @override + dynamic get maxLength => + props[_$key__maxLength___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set maxLength(dynamic value) => + props[_$key__maxLength___$DomPropsMixin] = value; /// @override - String get media => + dynamic get media => props[_$key__media___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set media(String value) => props[_$key__media___$DomPropsMixin] = value; + set media(dynamic value) => props[_$key__media___$DomPropsMixin] = value; /// @override - String get mediaGroup => + dynamic get mediaGroup => props[_$key__mediaGroup___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set mediaGroup(String value) => + set mediaGroup(dynamic value) => props[_$key__mediaGroup___$DomPropsMixin] = value; /// @override - String get method => + dynamic get method => props[_$key__method___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set method(String value) => props[_$key__method___$DomPropsMixin] = value; + set method(dynamic value) => props[_$key__method___$DomPropsMixin] = value; + + /// + @override + dynamic get min => + props[_$key__min___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set min(dynamic value) => props[_$key__min___$DomPropsMixin] = value; /// @override - String get name => + dynamic get name => props[_$key__name___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set name(String value) => props[_$key__name___$DomPropsMixin] = value; + set name(dynamic value) => props[_$key__name___$DomPropsMixin] = value; /// @override - String get pattern => + dynamic get pattern => props[_$key__pattern___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set pattern(String value) => props[_$key__pattern___$DomPropsMixin] = value; + set pattern(dynamic value) => props[_$key__pattern___$DomPropsMixin] = value; /// @override - String get placeholder => + dynamic get placeholder => props[_$key__placeholder___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set placeholder(String value) => + set placeholder(dynamic value) => props[_$key__placeholder___$DomPropsMixin] = value; /// @override - String get poster => + dynamic get poster => props[_$key__poster___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set poster(String value) => props[_$key__poster___$DomPropsMixin] = value; + set poster(dynamic value) => props[_$key__poster___$DomPropsMixin] = value; /// @override - String get preload => + dynamic get preload => props[_$key__preload___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set preload(String value) => props[_$key__preload___$DomPropsMixin] = value; + set preload(dynamic value) => props[_$key__preload___$DomPropsMixin] = value; /// @override - String get radioGroup => + dynamic get radioGroup => props[_$key__radioGroup___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set radioGroup(String value) => + set radioGroup(dynamic value) => props[_$key__radioGroup___$DomPropsMixin] = value; /// @override - String get rel => + dynamic get rel => props[_$key__rel___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set rel(String value) => props[_$key__rel___$DomPropsMixin] = value; + set rel(dynamic value) => props[_$key__rel___$DomPropsMixin] = value; /// @override - String get role => + dynamic get role => props[_$key__role___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set role(String value) => props[_$key__role___$DomPropsMixin] = value; + set role(dynamic value) => props[_$key__role___$DomPropsMixin] = value; + + /// + @override + dynamic get rowSpan => + props[_$key__rowSpan___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set rowSpan(dynamic value) => props[_$key__rowSpan___$DomPropsMixin] = value; /// @override - String get sandbox => + dynamic get sandbox => props[_$key__sandbox___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set sandbox(String value) => props[_$key__sandbox___$DomPropsMixin] = value; + set sandbox(dynamic value) => props[_$key__sandbox___$DomPropsMixin] = value; /// @override - String get scope => + dynamic get scope => props[_$key__scope___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set scope(String value) => props[_$key__scope___$DomPropsMixin] = value; + set scope(dynamic value) => props[_$key__scope___$DomPropsMixin] = value; /// @override - String get scrolling => + dynamic get scrolling => props[_$key__scrolling___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set scrolling(String value) => + set scrolling(dynamic value) => props[_$key__scrolling___$DomPropsMixin] = value; /// @override - String get shape => + dynamic get shape => props[_$key__shape___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set shape(String value) => props[_$key__shape___$DomPropsMixin] = value; + set shape(dynamic value) => props[_$key__shape___$DomPropsMixin] = value; /// @override - String get sizes => + dynamic get sizes => props[_$key__sizes___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set sizes(String value) => props[_$key__sizes___$DomPropsMixin] = value; + set sizes(dynamic value) => props[_$key__sizes___$DomPropsMixin] = value; + + /// + @override + dynamic get spellCheck => + props[_$key__spellCheck___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set spellCheck(dynamic value) => + props[_$key__spellCheck___$DomPropsMixin] = value; /// @override - String get src => + dynamic get src => props[_$key__src___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set src(String value) => props[_$key__src___$DomPropsMixin] = value; + set src(dynamic value) => props[_$key__src___$DomPropsMixin] = value; /// @override - String get srcDoc => + dynamic get srcDoc => props[_$key__srcDoc___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set srcDoc(String value) => props[_$key__srcDoc___$DomPropsMixin] = value; + set srcDoc(dynamic value) => props[_$key__srcDoc___$DomPropsMixin] = value; /// @override - String get srcSet => + dynamic get srcSet => props[_$key__srcSet___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set srcSet(String value) => props[_$key__srcSet___$DomPropsMixin] = value; + set srcSet(dynamic value) => props[_$key__srcSet___$DomPropsMixin] = value; + + /// + @override + dynamic get step => + props[_$key__step___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set step(dynamic value) => props[_$key__step___$DomPropsMixin] = value; + + /// + @override + dynamic get tabIndex => + props[_$key__tabIndex___$DomPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set tabIndex(dynamic value) => + props[_$key__tabIndex___$DomPropsMixin] = value; /// @override - String get target => + dynamic get target => props[_$key__target___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set target(String value) => props[_$key__target___$DomPropsMixin] = value; + set target(dynamic value) => props[_$key__target___$DomPropsMixin] = value; - /// + /// @override - String get title => - props[_$key__title___$DomPropsMixin] ?? + dynamic get type => + props[_$key__type___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set title(String value) => props[_$key__title___$DomPropsMixin] = value; + set type(dynamic value) => props[_$key__type___$DomPropsMixin] = value; /// @override - String get useMap => + dynamic get useMap => props[_$key__useMap___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set useMap(String value) => props[_$key__useMap___$DomPropsMixin] = value; + set useMap(dynamic value) => props[_$key__useMap___$DomPropsMixin] = value; - /// + /// @override - String get wmode => - props[_$key__wmode___$DomPropsMixin] ?? + dynamic get value => + props[_$key__value___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set wmode(String value) => props[_$key__wmode___$DomPropsMixin] = value; + set value(dynamic value) => props[_$key__value___$DomPropsMixin] = value; - /// + /// @override - dynamic get allowTransparency => - props[_$key__allowTransparency___$DomPropsMixin] ?? + dynamic get width => + props[_$key__width___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set allowTransparency(dynamic value) => - props[_$key__allowTransparency___$DomPropsMixin] = value; + set width(dynamic value) => props[_$key__width___$DomPropsMixin] = value; - /// + /// @override - dynamic get cellPadding => - props[_$key__cellPadding___$DomPropsMixin] ?? + dynamic get wmode => + props[_$key__wmode___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set cellPadding(dynamic value) => - props[_$key__cellPadding___$DomPropsMixin] = value; + set wmode(dynamic value) => props[_$key__wmode___$DomPropsMixin] = value; - /// + /// @override - dynamic get cellSpacing => - props[_$key__cellSpacing___$DomPropsMixin] ?? + AnimationEventCallback get onAnimationEnd => + props[_$key__onAnimationEnd___$DomPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set cellSpacing(dynamic value) => - props[_$key__cellSpacing___$DomPropsMixin] = value; + set onAnimationEnd(AnimationEventCallback value) => + props[_$key__onAnimationEnd___$DomPropsMixin] = value; - /// - @override - dynamic get colSpan => - props[_$key__colSpan___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set colSpan(dynamic value) => props[_$key__colSpan___$DomPropsMixin] = value; - - /// - @override - dynamic get contentEditable => - props[_$key__contentEditable___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set contentEditable(dynamic value) => - props[_$key__contentEditable___$DomPropsMixin] = value; - - /// - @override - dynamic get download => - props[_$key__download___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set download(dynamic value) => - props[_$key__download___$DomPropsMixin] = value; - - /// - @override - dynamic get draggable => - props[_$key__draggable___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set draggable(dynamic value) => - props[_$key__draggable___$DomPropsMixin] = value; - - /// - @override - dynamic get frameBorder => - props[_$key__frameBorder___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set frameBorder(dynamic value) => - props[_$key__frameBorder___$DomPropsMixin] = value; - - /// - @override - dynamic get height => - props[_$key__height___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set height(dynamic value) => props[_$key__height___$DomPropsMixin] = value; - - /// - @override - dynamic get icon => - props[_$key__icon___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set icon(dynamic value) => props[_$key__icon___$DomPropsMixin] = value; - - /// - @override - dynamic get label => - props[_$key__label___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set label(dynamic value) => props[_$key__label___$DomPropsMixin] = value; - - /// - @override - dynamic get max => - props[_$key__max___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set max(dynamic value) => props[_$key__max___$DomPropsMixin] = value; - - /// - @override - dynamic get maxLength => - props[_$key__maxLength___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set maxLength(dynamic value) => - props[_$key__maxLength___$DomPropsMixin] = value; - - /// - @override - dynamic get min => - props[_$key__min___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set min(dynamic value) => props[_$key__min___$DomPropsMixin] = value; - - /// - @override - dynamic get rowSpan => - props[_$key__rowSpan___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set rowSpan(dynamic value) => props[_$key__rowSpan___$DomPropsMixin] = value; - - /// - @override - dynamic get spellCheck => - props[_$key__spellCheck___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set spellCheck(dynamic value) => - props[_$key__spellCheck___$DomPropsMixin] = value; - - /// - @override - dynamic get step => - props[_$key__step___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set step(dynamic value) => props[_$key__step___$DomPropsMixin] = value; - - /// - @override - dynamic get tabIndex => - props[_$key__tabIndex___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set tabIndex(dynamic value) => - props[_$key__tabIndex___$DomPropsMixin] = value; - - /// - @override - dynamic get type => - props[_$key__type___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set type(dynamic value) => props[_$key__type___$DomPropsMixin] = value; - - /// - @override - dynamic get value => - props[_$key__value___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set value(dynamic value) => props[_$key__value___$DomPropsMixin] = value; - - /// - @override - dynamic get width => - props[_$key__width___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set width(dynamic value) => props[_$key__width___$DomPropsMixin] = value; - - /// - @override - AnimationEventCallback get onAnimationEnd => - props[_$key__onAnimationEnd___$DomPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set onAnimationEnd(AnimationEventCallback value) => - props[_$key__onAnimationEnd___$DomPropsMixin] = value; - - /// + /// @override AnimationEventCallback get onAnimationIteration => props[_$key__onAnimationIteration___$DomPropsMixin] ?? @@ -1789,6 +1792,12 @@ abstract class DomPropsMixin implements _$DomPropsMixin { const PropDescriptor(_$key__selected___$DomPropsMixin); static const PropDescriptor _$prop__style___$DomPropsMixin = const PropDescriptor(_$key__style___$DomPropsMixin); + static const PropDescriptor _$prop__className___$DomPropsMixin = + const PropDescriptor(_$key__className___$DomPropsMixin); + static const PropDescriptor _$prop__title___$DomPropsMixin = + const PropDescriptor(_$key__title___$DomPropsMixin); + static const PropDescriptor _$prop__id___$DomPropsMixin = + const PropDescriptor(_$key__id___$DomPropsMixin); static const PropDescriptor _$prop__accept___$DomPropsMixin = const PropDescriptor(_$key__accept___$DomPropsMixin); static const PropDescriptor _$prop__acceptCharset___$DomPropsMixin = @@ -1797,18 +1806,26 @@ abstract class DomPropsMixin implements _$DomPropsMixin { const PropDescriptor(_$key__accessKey___$DomPropsMixin); static const PropDescriptor _$prop__action___$DomPropsMixin = const PropDescriptor(_$key__action___$DomPropsMixin); + static const PropDescriptor _$prop__allowTransparency___$DomPropsMixin = + const PropDescriptor(_$key__allowTransparency___$DomPropsMixin); static const PropDescriptor _$prop__alt___$DomPropsMixin = const PropDescriptor(_$key__alt___$DomPropsMixin); static const PropDescriptor _$prop__autoComplete___$DomPropsMixin = const PropDescriptor(_$key__autoComplete___$DomPropsMixin); + static const PropDescriptor _$prop__cellPadding___$DomPropsMixin = + const PropDescriptor(_$key__cellPadding___$DomPropsMixin); + static const PropDescriptor _$prop__cellSpacing___$DomPropsMixin = + const PropDescriptor(_$key__cellSpacing___$DomPropsMixin); static const PropDescriptor _$prop__charSet___$DomPropsMixin = const PropDescriptor(_$key__charSet___$DomPropsMixin); static const PropDescriptor _$prop__classID___$DomPropsMixin = const PropDescriptor(_$key__classID___$DomPropsMixin); - static const PropDescriptor _$prop__className___$DomPropsMixin = - const PropDescriptor(_$key__className___$DomPropsMixin); + static const PropDescriptor _$prop__colSpan___$DomPropsMixin = + const PropDescriptor(_$key__colSpan___$DomPropsMixin); static const PropDescriptor _$prop__content___$DomPropsMixin = const PropDescriptor(_$key__content___$DomPropsMixin); + static const PropDescriptor _$prop__contentEditable___$DomPropsMixin = + const PropDescriptor(_$key__contentEditable___$DomPropsMixin); static const PropDescriptor _$prop__contextMenu___$DomPropsMixin = const PropDescriptor(_$key__contextMenu___$DomPropsMixin); static const PropDescriptor _$prop__coords___$DomPropsMixin = @@ -1821,10 +1838,18 @@ abstract class DomPropsMixin implements _$DomPropsMixin { const PropDescriptor(_$key__dateTime___$DomPropsMixin); static const PropDescriptor _$prop__dir___$DomPropsMixin = const PropDescriptor(_$key__dir___$DomPropsMixin); + static const PropDescriptor _$prop__download___$DomPropsMixin = + const PropDescriptor(_$key__download___$DomPropsMixin); + static const PropDescriptor _$prop__draggable___$DomPropsMixin = + const PropDescriptor(_$key__draggable___$DomPropsMixin); static const PropDescriptor _$prop__encType___$DomPropsMixin = const PropDescriptor(_$key__encType___$DomPropsMixin); static const PropDescriptor _$prop__form___$DomPropsMixin = const PropDescriptor(_$key__form___$DomPropsMixin); + static const PropDescriptor _$prop__frameBorder___$DomPropsMixin = + const PropDescriptor(_$key__frameBorder___$DomPropsMixin); + static const PropDescriptor _$prop__height___$DomPropsMixin = + const PropDescriptor(_$key__height___$DomPropsMixin); static const PropDescriptor _$prop__href___$DomPropsMixin = const PropDescriptor(_$key__href___$DomPropsMixin); static const PropDescriptor _$prop__hrefLang___$DomPropsMixin = @@ -1833,20 +1858,28 @@ abstract class DomPropsMixin implements _$DomPropsMixin { const PropDescriptor(_$key__htmlFor___$DomPropsMixin); static const PropDescriptor _$prop__httpEquiv___$DomPropsMixin = const PropDescriptor(_$key__httpEquiv___$DomPropsMixin); - static const PropDescriptor _$prop__id___$DomPropsMixin = - const PropDescriptor(_$key__id___$DomPropsMixin); + static const PropDescriptor _$prop__icon___$DomPropsMixin = + const PropDescriptor(_$key__icon___$DomPropsMixin); + static const PropDescriptor _$prop__label___$DomPropsMixin = + const PropDescriptor(_$key__label___$DomPropsMixin); static const PropDescriptor _$prop__lang___$DomPropsMixin = const PropDescriptor(_$key__lang___$DomPropsMixin); static const PropDescriptor _$prop__list___$DomPropsMixin = const PropDescriptor(_$key__list___$DomPropsMixin); static const PropDescriptor _$prop__manifest___$DomPropsMixin = const PropDescriptor(_$key__manifest___$DomPropsMixin); + static const PropDescriptor _$prop__max___$DomPropsMixin = + const PropDescriptor(_$key__max___$DomPropsMixin); + static const PropDescriptor _$prop__maxLength___$DomPropsMixin = + const PropDescriptor(_$key__maxLength___$DomPropsMixin); static const PropDescriptor _$prop__media___$DomPropsMixin = const PropDescriptor(_$key__media___$DomPropsMixin); static const PropDescriptor _$prop__mediaGroup___$DomPropsMixin = const PropDescriptor(_$key__mediaGroup___$DomPropsMixin); static const PropDescriptor _$prop__method___$DomPropsMixin = const PropDescriptor(_$key__method___$DomPropsMixin); + static const PropDescriptor _$prop__min___$DomPropsMixin = + const PropDescriptor(_$key__min___$DomPropsMixin); static const PropDescriptor _$prop__name___$DomPropsMixin = const PropDescriptor(_$key__name___$DomPropsMixin); static const PropDescriptor _$prop__pattern___$DomPropsMixin = @@ -1863,6 +1896,8 @@ abstract class DomPropsMixin implements _$DomPropsMixin { const PropDescriptor(_$key__rel___$DomPropsMixin); static const PropDescriptor _$prop__role___$DomPropsMixin = const PropDescriptor(_$key__role___$DomPropsMixin); + static const PropDescriptor _$prop__rowSpan___$DomPropsMixin = + const PropDescriptor(_$key__rowSpan___$DomPropsMixin); static const PropDescriptor _$prop__sandbox___$DomPropsMixin = const PropDescriptor(_$key__sandbox___$DomPropsMixin); static const PropDescriptor _$prop__scope___$DomPropsMixin = @@ -1873,62 +1908,30 @@ abstract class DomPropsMixin implements _$DomPropsMixin { const PropDescriptor(_$key__shape___$DomPropsMixin); static const PropDescriptor _$prop__sizes___$DomPropsMixin = const PropDescriptor(_$key__sizes___$DomPropsMixin); + static const PropDescriptor _$prop__spellCheck___$DomPropsMixin = + const PropDescriptor(_$key__spellCheck___$DomPropsMixin); static const PropDescriptor _$prop__src___$DomPropsMixin = const PropDescriptor(_$key__src___$DomPropsMixin); static const PropDescriptor _$prop__srcDoc___$DomPropsMixin = const PropDescriptor(_$key__srcDoc___$DomPropsMixin); static const PropDescriptor _$prop__srcSet___$DomPropsMixin = const PropDescriptor(_$key__srcSet___$DomPropsMixin); + static const PropDescriptor _$prop__step___$DomPropsMixin = + const PropDescriptor(_$key__step___$DomPropsMixin); + static const PropDescriptor _$prop__tabIndex___$DomPropsMixin = + const PropDescriptor(_$key__tabIndex___$DomPropsMixin); static const PropDescriptor _$prop__target___$DomPropsMixin = const PropDescriptor(_$key__target___$DomPropsMixin); - static const PropDescriptor _$prop__title___$DomPropsMixin = - const PropDescriptor(_$key__title___$DomPropsMixin); + static const PropDescriptor _$prop__type___$DomPropsMixin = + const PropDescriptor(_$key__type___$DomPropsMixin); static const PropDescriptor _$prop__useMap___$DomPropsMixin = const PropDescriptor(_$key__useMap___$DomPropsMixin); + static const PropDescriptor _$prop__value___$DomPropsMixin = + const PropDescriptor(_$key__value___$DomPropsMixin); + static const PropDescriptor _$prop__width___$DomPropsMixin = + const PropDescriptor(_$key__width___$DomPropsMixin); static const PropDescriptor _$prop__wmode___$DomPropsMixin = const PropDescriptor(_$key__wmode___$DomPropsMixin); - static const PropDescriptor _$prop__allowTransparency___$DomPropsMixin = - const PropDescriptor(_$key__allowTransparency___$DomPropsMixin); - static const PropDescriptor _$prop__cellPadding___$DomPropsMixin = - const PropDescriptor(_$key__cellPadding___$DomPropsMixin); - static const PropDescriptor _$prop__cellSpacing___$DomPropsMixin = - const PropDescriptor(_$key__cellSpacing___$DomPropsMixin); - static const PropDescriptor _$prop__colSpan___$DomPropsMixin = - const PropDescriptor(_$key__colSpan___$DomPropsMixin); - static const PropDescriptor _$prop__contentEditable___$DomPropsMixin = - const PropDescriptor(_$key__contentEditable___$DomPropsMixin); - static const PropDescriptor _$prop__download___$DomPropsMixin = - const PropDescriptor(_$key__download___$DomPropsMixin); - static const PropDescriptor _$prop__draggable___$DomPropsMixin = - const PropDescriptor(_$key__draggable___$DomPropsMixin); - static const PropDescriptor _$prop__frameBorder___$DomPropsMixin = - const PropDescriptor(_$key__frameBorder___$DomPropsMixin); - static const PropDescriptor _$prop__height___$DomPropsMixin = - const PropDescriptor(_$key__height___$DomPropsMixin); - static const PropDescriptor _$prop__icon___$DomPropsMixin = - const PropDescriptor(_$key__icon___$DomPropsMixin); - static const PropDescriptor _$prop__label___$DomPropsMixin = - const PropDescriptor(_$key__label___$DomPropsMixin); - static const PropDescriptor _$prop__max___$DomPropsMixin = - const PropDescriptor(_$key__max___$DomPropsMixin); - static const PropDescriptor _$prop__maxLength___$DomPropsMixin = - const PropDescriptor(_$key__maxLength___$DomPropsMixin); - static const PropDescriptor _$prop__min___$DomPropsMixin = - const PropDescriptor(_$key__min___$DomPropsMixin); - static const PropDescriptor _$prop__rowSpan___$DomPropsMixin = - const PropDescriptor(_$key__rowSpan___$DomPropsMixin); - static const PropDescriptor _$prop__spellCheck___$DomPropsMixin = - const PropDescriptor(_$key__spellCheck___$DomPropsMixin); - static const PropDescriptor _$prop__step___$DomPropsMixin = - const PropDescriptor(_$key__step___$DomPropsMixin); - static const PropDescriptor _$prop__tabIndex___$DomPropsMixin = - const PropDescriptor(_$key__tabIndex___$DomPropsMixin); - static const PropDescriptor _$prop__type___$DomPropsMixin = - const PropDescriptor(_$key__type___$DomPropsMixin); - static const PropDescriptor _$prop__value___$DomPropsMixin = - const PropDescriptor(_$key__value___$DomPropsMixin); - static const PropDescriptor _$prop__width___$DomPropsMixin = - const PropDescriptor(_$key__width___$DomPropsMixin); static const PropDescriptor _$prop__onAnimationEnd___$DomPropsMixin = const PropDescriptor(_$key__onAnimationEnd___$DomPropsMixin); static const PropDescriptor _$prop__onAnimationIteration___$DomPropsMixin = @@ -2112,35 +2115,52 @@ abstract class DomPropsMixin implements _$DomPropsMixin { static const String _$key__seamless___$DomPropsMixin = 'seamless'; static const String _$key__selected___$DomPropsMixin = 'selected'; static const String _$key__style___$DomPropsMixin = 'style'; + static const String _$key__className___$DomPropsMixin = 'className'; + static const String _$key__title___$DomPropsMixin = 'title'; + static const String _$key__id___$DomPropsMixin = 'id'; static const String _$key__accept___$DomPropsMixin = 'accept'; static const String _$key__acceptCharset___$DomPropsMixin = 'acceptCharset'; static const String _$key__accessKey___$DomPropsMixin = 'accessKey'; static const String _$key__action___$DomPropsMixin = 'action'; + static const String _$key__allowTransparency___$DomPropsMixin = + 'allowTransparency'; static const String _$key__alt___$DomPropsMixin = 'alt'; static const String _$key__autoComplete___$DomPropsMixin = 'autoComplete'; + static const String _$key__cellPadding___$DomPropsMixin = 'cellPadding'; + static const String _$key__cellSpacing___$DomPropsMixin = 'cellSpacing'; static const String _$key__charSet___$DomPropsMixin = 'charSet'; static const String _$key__classID___$DomPropsMixin = 'classID'; - static const String _$key__className___$DomPropsMixin = 'className'; + static const String _$key__colSpan___$DomPropsMixin = 'colSpan'; static const String _$key__content___$DomPropsMixin = 'content'; + static const String _$key__contentEditable___$DomPropsMixin = + 'contentEditable'; static const String _$key__contextMenu___$DomPropsMixin = 'contextMenu'; static const String _$key__coords___$DomPropsMixin = 'coords'; static const String _$key__crossOrigin___$DomPropsMixin = 'crossOrigin'; static const String _$key__data___$DomPropsMixin = 'data'; static const String _$key__dateTime___$DomPropsMixin = 'dateTime'; static const String _$key__dir___$DomPropsMixin = 'dir'; + static const String _$key__download___$DomPropsMixin = 'download'; + static const String _$key__draggable___$DomPropsMixin = 'draggable'; static const String _$key__encType___$DomPropsMixin = 'encType'; static const String _$key__form___$DomPropsMixin = 'form'; + static const String _$key__frameBorder___$DomPropsMixin = 'frameBorder'; + static const String _$key__height___$DomPropsMixin = 'height'; static const String _$key__href___$DomPropsMixin = 'href'; static const String _$key__hrefLang___$DomPropsMixin = 'hrefLang'; static const String _$key__htmlFor___$DomPropsMixin = 'htmlFor'; static const String _$key__httpEquiv___$DomPropsMixin = 'httpEquiv'; - static const String _$key__id___$DomPropsMixin = 'id'; + static const String _$key__icon___$DomPropsMixin = 'icon'; + static const String _$key__label___$DomPropsMixin = 'label'; static const String _$key__lang___$DomPropsMixin = 'lang'; static const String _$key__list___$DomPropsMixin = 'list'; static const String _$key__manifest___$DomPropsMixin = 'manifest'; + static const String _$key__max___$DomPropsMixin = 'max'; + static const String _$key__maxLength___$DomPropsMixin = 'maxLength'; static const String _$key__media___$DomPropsMixin = 'media'; static const String _$key__mediaGroup___$DomPropsMixin = 'mediaGroup'; static const String _$key__method___$DomPropsMixin = 'method'; + static const String _$key__min___$DomPropsMixin = 'min'; static const String _$key__name___$DomPropsMixin = 'name'; static const String _$key__pattern___$DomPropsMixin = 'pattern'; static const String _$key__placeholder___$DomPropsMixin = 'placeholder'; @@ -2149,41 +2169,24 @@ abstract class DomPropsMixin implements _$DomPropsMixin { static const String _$key__radioGroup___$DomPropsMixin = 'radioGroup'; static const String _$key__rel___$DomPropsMixin = 'rel'; static const String _$key__role___$DomPropsMixin = 'role'; + static const String _$key__rowSpan___$DomPropsMixin = 'rowSpan'; static const String _$key__sandbox___$DomPropsMixin = 'sandbox'; static const String _$key__scope___$DomPropsMixin = 'scope'; static const String _$key__scrolling___$DomPropsMixin = 'scrolling'; static const String _$key__shape___$DomPropsMixin = 'shape'; static const String _$key__sizes___$DomPropsMixin = 'sizes'; + static const String _$key__spellCheck___$DomPropsMixin = 'spellCheck'; static const String _$key__src___$DomPropsMixin = 'src'; static const String _$key__srcDoc___$DomPropsMixin = 'srcDoc'; static const String _$key__srcSet___$DomPropsMixin = 'srcSet'; - static const String _$key__target___$DomPropsMixin = 'target'; - static const String _$key__title___$DomPropsMixin = 'title'; - static const String _$key__useMap___$DomPropsMixin = 'useMap'; - static const String _$key__wmode___$DomPropsMixin = 'wmode'; - static const String _$key__allowTransparency___$DomPropsMixin = - 'allowTransparency'; - static const String _$key__cellPadding___$DomPropsMixin = 'cellPadding'; - static const String _$key__cellSpacing___$DomPropsMixin = 'cellSpacing'; - static const String _$key__colSpan___$DomPropsMixin = 'colSpan'; - static const String _$key__contentEditable___$DomPropsMixin = - 'contentEditable'; - static const String _$key__download___$DomPropsMixin = 'download'; - static const String _$key__draggable___$DomPropsMixin = 'draggable'; - static const String _$key__frameBorder___$DomPropsMixin = 'frameBorder'; - static const String _$key__height___$DomPropsMixin = 'height'; - static const String _$key__icon___$DomPropsMixin = 'icon'; - static const String _$key__label___$DomPropsMixin = 'label'; - static const String _$key__max___$DomPropsMixin = 'max'; - static const String _$key__maxLength___$DomPropsMixin = 'maxLength'; - static const String _$key__min___$DomPropsMixin = 'min'; - static const String _$key__rowSpan___$DomPropsMixin = 'rowSpan'; - static const String _$key__spellCheck___$DomPropsMixin = 'spellCheck'; static const String _$key__step___$DomPropsMixin = 'step'; static const String _$key__tabIndex___$DomPropsMixin = 'tabIndex'; + static const String _$key__target___$DomPropsMixin = 'target'; static const String _$key__type___$DomPropsMixin = 'type'; + static const String _$key__useMap___$DomPropsMixin = 'useMap'; static const String _$key__value___$DomPropsMixin = 'value'; static const String _$key__width___$DomPropsMixin = 'width'; + static const String _$key__wmode___$DomPropsMixin = 'wmode'; static const String _$key__onAnimationEnd___$DomPropsMixin = 'onAnimationEnd'; static const String _$key__onAnimationIteration___$DomPropsMixin = 'onAnimationIteration'; @@ -2316,35 +2319,50 @@ abstract class DomPropsMixin implements _$DomPropsMixin { _$prop__seamless___$DomPropsMixin, _$prop__selected___$DomPropsMixin, _$prop__style___$DomPropsMixin, + _$prop__className___$DomPropsMixin, + _$prop__title___$DomPropsMixin, + _$prop__id___$DomPropsMixin, _$prop__accept___$DomPropsMixin, _$prop__acceptCharset___$DomPropsMixin, _$prop__accessKey___$DomPropsMixin, _$prop__action___$DomPropsMixin, + _$prop__allowTransparency___$DomPropsMixin, _$prop__alt___$DomPropsMixin, _$prop__autoComplete___$DomPropsMixin, + _$prop__cellPadding___$DomPropsMixin, + _$prop__cellSpacing___$DomPropsMixin, _$prop__charSet___$DomPropsMixin, _$prop__classID___$DomPropsMixin, - _$prop__className___$DomPropsMixin, + _$prop__colSpan___$DomPropsMixin, _$prop__content___$DomPropsMixin, + _$prop__contentEditable___$DomPropsMixin, _$prop__contextMenu___$DomPropsMixin, _$prop__coords___$DomPropsMixin, _$prop__crossOrigin___$DomPropsMixin, _$prop__data___$DomPropsMixin, _$prop__dateTime___$DomPropsMixin, _$prop__dir___$DomPropsMixin, + _$prop__download___$DomPropsMixin, + _$prop__draggable___$DomPropsMixin, _$prop__encType___$DomPropsMixin, _$prop__form___$DomPropsMixin, + _$prop__frameBorder___$DomPropsMixin, + _$prop__height___$DomPropsMixin, _$prop__href___$DomPropsMixin, _$prop__hrefLang___$DomPropsMixin, _$prop__htmlFor___$DomPropsMixin, _$prop__httpEquiv___$DomPropsMixin, - _$prop__id___$DomPropsMixin, + _$prop__icon___$DomPropsMixin, + _$prop__label___$DomPropsMixin, _$prop__lang___$DomPropsMixin, _$prop__list___$DomPropsMixin, _$prop__manifest___$DomPropsMixin, + _$prop__max___$DomPropsMixin, + _$prop__maxLength___$DomPropsMixin, _$prop__media___$DomPropsMixin, _$prop__mediaGroup___$DomPropsMixin, _$prop__method___$DomPropsMixin, + _$prop__min___$DomPropsMixin, _$prop__name___$DomPropsMixin, _$prop__pattern___$DomPropsMixin, _$prop__placeholder___$DomPropsMixin, @@ -2353,39 +2371,24 @@ abstract class DomPropsMixin implements _$DomPropsMixin { _$prop__radioGroup___$DomPropsMixin, _$prop__rel___$DomPropsMixin, _$prop__role___$DomPropsMixin, + _$prop__rowSpan___$DomPropsMixin, _$prop__sandbox___$DomPropsMixin, _$prop__scope___$DomPropsMixin, _$prop__scrolling___$DomPropsMixin, _$prop__shape___$DomPropsMixin, _$prop__sizes___$DomPropsMixin, + _$prop__spellCheck___$DomPropsMixin, _$prop__src___$DomPropsMixin, _$prop__srcDoc___$DomPropsMixin, _$prop__srcSet___$DomPropsMixin, - _$prop__target___$DomPropsMixin, - _$prop__title___$DomPropsMixin, - _$prop__useMap___$DomPropsMixin, - _$prop__wmode___$DomPropsMixin, - _$prop__allowTransparency___$DomPropsMixin, - _$prop__cellPadding___$DomPropsMixin, - _$prop__cellSpacing___$DomPropsMixin, - _$prop__colSpan___$DomPropsMixin, - _$prop__contentEditable___$DomPropsMixin, - _$prop__download___$DomPropsMixin, - _$prop__draggable___$DomPropsMixin, - _$prop__frameBorder___$DomPropsMixin, - _$prop__height___$DomPropsMixin, - _$prop__icon___$DomPropsMixin, - _$prop__label___$DomPropsMixin, - _$prop__max___$DomPropsMixin, - _$prop__maxLength___$DomPropsMixin, - _$prop__min___$DomPropsMixin, - _$prop__rowSpan___$DomPropsMixin, - _$prop__spellCheck___$DomPropsMixin, _$prop__step___$DomPropsMixin, _$prop__tabIndex___$DomPropsMixin, + _$prop__target___$DomPropsMixin, _$prop__type___$DomPropsMixin, + _$prop__useMap___$DomPropsMixin, _$prop__value___$DomPropsMixin, _$prop__width___$DomPropsMixin, + _$prop__wmode___$DomPropsMixin, _$prop__onAnimationEnd___$DomPropsMixin, _$prop__onAnimationIteration___$DomPropsMixin, _$prop__onAnimationStart___$DomPropsMixin, @@ -2491,35 +2494,50 @@ abstract class DomPropsMixin implements _$DomPropsMixin { _$key__seamless___$DomPropsMixin, _$key__selected___$DomPropsMixin, _$key__style___$DomPropsMixin, + _$key__className___$DomPropsMixin, + _$key__title___$DomPropsMixin, + _$key__id___$DomPropsMixin, _$key__accept___$DomPropsMixin, _$key__acceptCharset___$DomPropsMixin, _$key__accessKey___$DomPropsMixin, _$key__action___$DomPropsMixin, + _$key__allowTransparency___$DomPropsMixin, _$key__alt___$DomPropsMixin, _$key__autoComplete___$DomPropsMixin, + _$key__cellPadding___$DomPropsMixin, + _$key__cellSpacing___$DomPropsMixin, _$key__charSet___$DomPropsMixin, _$key__classID___$DomPropsMixin, - _$key__className___$DomPropsMixin, + _$key__colSpan___$DomPropsMixin, _$key__content___$DomPropsMixin, + _$key__contentEditable___$DomPropsMixin, _$key__contextMenu___$DomPropsMixin, _$key__coords___$DomPropsMixin, _$key__crossOrigin___$DomPropsMixin, _$key__data___$DomPropsMixin, _$key__dateTime___$DomPropsMixin, _$key__dir___$DomPropsMixin, + _$key__download___$DomPropsMixin, + _$key__draggable___$DomPropsMixin, _$key__encType___$DomPropsMixin, _$key__form___$DomPropsMixin, + _$key__frameBorder___$DomPropsMixin, + _$key__height___$DomPropsMixin, _$key__href___$DomPropsMixin, _$key__hrefLang___$DomPropsMixin, _$key__htmlFor___$DomPropsMixin, _$key__httpEquiv___$DomPropsMixin, - _$key__id___$DomPropsMixin, + _$key__icon___$DomPropsMixin, + _$key__label___$DomPropsMixin, _$key__lang___$DomPropsMixin, _$key__list___$DomPropsMixin, _$key__manifest___$DomPropsMixin, + _$key__max___$DomPropsMixin, + _$key__maxLength___$DomPropsMixin, _$key__media___$DomPropsMixin, _$key__mediaGroup___$DomPropsMixin, _$key__method___$DomPropsMixin, + _$key__min___$DomPropsMixin, _$key__name___$DomPropsMixin, _$key__pattern___$DomPropsMixin, _$key__placeholder___$DomPropsMixin, @@ -2528,39 +2546,24 @@ abstract class DomPropsMixin implements _$DomPropsMixin { _$key__radioGroup___$DomPropsMixin, _$key__rel___$DomPropsMixin, _$key__role___$DomPropsMixin, + _$key__rowSpan___$DomPropsMixin, _$key__sandbox___$DomPropsMixin, _$key__scope___$DomPropsMixin, _$key__scrolling___$DomPropsMixin, _$key__shape___$DomPropsMixin, _$key__sizes___$DomPropsMixin, + _$key__spellCheck___$DomPropsMixin, _$key__src___$DomPropsMixin, _$key__srcDoc___$DomPropsMixin, _$key__srcSet___$DomPropsMixin, - _$key__target___$DomPropsMixin, - _$key__title___$DomPropsMixin, - _$key__useMap___$DomPropsMixin, - _$key__wmode___$DomPropsMixin, - _$key__allowTransparency___$DomPropsMixin, - _$key__cellPadding___$DomPropsMixin, - _$key__cellSpacing___$DomPropsMixin, - _$key__colSpan___$DomPropsMixin, - _$key__contentEditable___$DomPropsMixin, - _$key__download___$DomPropsMixin, - _$key__draggable___$DomPropsMixin, - _$key__frameBorder___$DomPropsMixin, - _$key__height___$DomPropsMixin, - _$key__icon___$DomPropsMixin, - _$key__label___$DomPropsMixin, - _$key__max___$DomPropsMixin, - _$key__maxLength___$DomPropsMixin, - _$key__min___$DomPropsMixin, - _$key__rowSpan___$DomPropsMixin, - _$key__spellCheck___$DomPropsMixin, _$key__step___$DomPropsMixin, _$key__tabIndex___$DomPropsMixin, + _$key__target___$DomPropsMixin, _$key__type___$DomPropsMixin, + _$key__useMap___$DomPropsMixin, _$key__value___$DomPropsMixin, _$key__width___$DomPropsMixin, + _$key__wmode___$DomPropsMixin, _$key__onAnimationEnd___$DomPropsMixin, _$key__onAnimationIteration___$DomPropsMixin, _$key__onAnimationStart___$DomPropsMixin, @@ -2656,489 +2659,491 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { /// @override - String get clipPath => + dynamic get clipPath => props[_$key__clipPath___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set clipPath(String value) => props[_$key__clipPath___$SvgPropsMixin] = value; + set clipPath(dynamic value) => + props[_$key__clipPath___$SvgPropsMixin] = value; + + /// + @override + dynamic get cx => + props[_$key__cx___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set cx(dynamic value) => props[_$key__cx___$SvgPropsMixin] = value; + + /// + @override + dynamic get cy => + props[_$key__cy___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set cy(dynamic value) => props[_$key__cy___$SvgPropsMixin] = value; /// @override - String get d => + dynamic get d => props[_$key__d___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set d(String value) => props[_$key__d___$SvgPropsMixin] = value; + set d(dynamic value) => props[_$key__d___$SvgPropsMixin] = value; + + /// + @override + dynamic get dx => + props[_$key__dx___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set dx(dynamic value) => props[_$key__dx___$SvgPropsMixin] = value; + + /// + @override + dynamic get dy => + props[_$key__dy___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set dy(dynamic value) => props[_$key__dy___$SvgPropsMixin] = value; /// @override - String get fill => + dynamic get fill => props[_$key__fill___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set fill(String value) => props[_$key__fill___$SvgPropsMixin] = value; + set fill(dynamic value) => props[_$key__fill___$SvgPropsMixin] = value; + + /// + @override + dynamic get fillOpacity => + props[_$key__fillOpacity___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set fillOpacity(dynamic value) => + props[_$key__fillOpacity___$SvgPropsMixin] = value; /// @override - String get fontFamily => + dynamic get fontFamily => props[_$key__fontFamily___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set fontFamily(String value) => + set fontFamily(dynamic value) => props[_$key__fontFamily___$SvgPropsMixin] = value; + /// + @override + dynamic get fontSize => + props[_$key__fontSize___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set fontSize(dynamic value) => + props[_$key__fontSize___$SvgPropsMixin] = value; + + /// + @override + dynamic get fx => + props[_$key__fx___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set fx(dynamic value) => props[_$key__fx___$SvgPropsMixin] = value; + + /// + @override + dynamic get fy => + props[_$key__fy___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set fy(dynamic value) => props[_$key__fy___$SvgPropsMixin] = value; + /// @override - String get gradientTransform => + dynamic get gradientTransform => props[_$key__gradientTransform___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set gradientTransform(String value) => + set gradientTransform(dynamic value) => props[_$key__gradientTransform___$SvgPropsMixin] = value; /// @override - String get gradientUnits => + dynamic get gradientUnits => props[_$key__gradientUnits___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set gradientUnits(String value) => + set gradientUnits(dynamic value) => props[_$key__gradientUnits___$SvgPropsMixin] = value; /// @override - String get markerEnd => + dynamic get markerEnd => props[_$key__markerEnd___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set markerEnd(String value) => + set markerEnd(dynamic value) => props[_$key__markerEnd___$SvgPropsMixin] = value; /// @override - String get markerMid => + dynamic get markerMid => props[_$key__markerMid___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set markerMid(String value) => + set markerMid(dynamic value) => props[_$key__markerMid___$SvgPropsMixin] = value; /// @override - String get markerStart => + dynamic get markerStart => props[_$key__markerStart___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set markerStart(String value) => + set markerStart(dynamic value) => props[_$key__markerStart___$SvgPropsMixin] = value; + /// + @override + dynamic get offset => + props[_$key__offset___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set offset(dynamic value) => props[_$key__offset___$SvgPropsMixin] = value; + + /// + @override + dynamic get opacity => + props[_$key__opacity___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set opacity(dynamic value) => props[_$key__opacity___$SvgPropsMixin] = value; + /// @override - String get patternContentUnits => + dynamic get patternContentUnits => props[_$key__patternContentUnits___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set patternContentUnits(String value) => + set patternContentUnits(dynamic value) => props[_$key__patternContentUnits___$SvgPropsMixin] = value; /// @override - String get patternUnits => + dynamic get patternUnits => props[_$key__patternUnits___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set patternUnits(String value) => + set patternUnits(dynamic value) => props[_$key__patternUnits___$SvgPropsMixin] = value; /// @override - String get points => + dynamic get points => props[_$key__points___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set points(String value) => props[_$key__points___$SvgPropsMixin] = value; + set points(dynamic value) => props[_$key__points___$SvgPropsMixin] = value; /// @override - String get preserveAspectRatio => + dynamic get preserveAspectRatio => props[_$key__preserveAspectRatio___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set preserveAspectRatio(String value) => + set preserveAspectRatio(dynamic value) => props[_$key__preserveAspectRatio___$SvgPropsMixin] = value; - /// + /// @override - String get spreadMethod => - props[_$key__spreadMethod___$SvgPropsMixin] ?? + dynamic get r => + props[_$key__r___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; - /// + /// @override - set spreadMethod(String value) => - props[_$key__spreadMethod___$SvgPropsMixin] = value; + set r(dynamic value) => props[_$key__r___$SvgPropsMixin] = value; - /// + /// + @override + dynamic get rx => + props[_$key__rx___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set rx(dynamic value) => props[_$key__rx___$SvgPropsMixin] = value; + + /// + @override + dynamic get ry => + props[_$key__ry___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// @override - String get stopColor => + set ry(dynamic value) => props[_$key__ry___$SvgPropsMixin] = value; + + /// + @override + dynamic get spreadMethod => + props[_$key__spreadMethod___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set spreadMethod(dynamic value) => + props[_$key__spreadMethod___$SvgPropsMixin] = value; + + /// + @override + dynamic get stopColor => props[_$key__stopColor___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set stopColor(String value) => + set stopColor(dynamic value) => props[_$key__stopColor___$SvgPropsMixin] = value; + /// + @override + dynamic get stopOpacity => + props[_$key__stopOpacity___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set stopOpacity(dynamic value) => + props[_$key__stopOpacity___$SvgPropsMixin] = value; + /// @override - String get stroke => + dynamic get stroke => props[_$key__stroke___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set stroke(String value) => props[_$key__stroke___$SvgPropsMixin] = value; + set stroke(dynamic value) => props[_$key__stroke___$SvgPropsMixin] = value; + + /// + @override + dynamic get strokeDasharray => + props[_$key__strokeDasharray___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set strokeDasharray(dynamic value) => + props[_$key__strokeDasharray___$SvgPropsMixin] = value; /// @override - String get strokeLinecap => + dynamic get strokeLinecap => props[_$key__strokeLinecap___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set strokeLinecap(String value) => + set strokeLinecap(dynamic value) => props[_$key__strokeLinecap___$SvgPropsMixin] = value; + /// + @override + dynamic get strokeOpacity => + props[_$key__strokeOpacity___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set strokeOpacity(dynamic value) => + props[_$key__strokeOpacity___$SvgPropsMixin] = value; + + /// + @override + dynamic get strokeWidth => + props[_$key__strokeWidth___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set strokeWidth(dynamic value) => + props[_$key__strokeWidth___$SvgPropsMixin] = value; + /// @override - String get textAnchor => + dynamic get textAnchor => props[_$key__textAnchor___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set textAnchor(String value) => + set textAnchor(dynamic value) => props[_$key__textAnchor___$SvgPropsMixin] = value; /// @override - String get transform => + dynamic get transform => props[_$key__transform___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set transform(String value) => + set transform(dynamic value) => props[_$key__transform___$SvgPropsMixin] = value; /// @override - String get version => + dynamic get version => props[_$key__version___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set version(String value) => props[_$key__version___$SvgPropsMixin] = value; + set version(dynamic value) => props[_$key__version___$SvgPropsMixin] = value; /// @override - String get viewBox => + dynamic get viewBox => props[_$key__viewBox___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set viewBox(String value) => props[_$key__viewBox___$SvgPropsMixin] = value; + set viewBox(dynamic value) => props[_$key__viewBox___$SvgPropsMixin] = value; + + /// + @override + dynamic get x1 => + props[_$key__x1___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set x1(dynamic value) => props[_$key__x1___$SvgPropsMixin] = value; + + /// + @override + dynamic get x2 => + props[_$key__x2___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set x2(dynamic value) => props[_$key__x2___$SvgPropsMixin] = value; + + /// + @override + dynamic get x => + props[_$key__x___$SvgPropsMixin] ?? + null; // Add ` ?? null` to workaround DDC bug: ; + /// + @override + set x(dynamic value) => props[_$key__x___$SvgPropsMixin] = value; /// @override - String get xlinkActuate => + dynamic get xlinkActuate => props[_$key__xlinkActuate___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkActuate(String value) => + set xlinkActuate(dynamic value) => props[_$key__xlinkActuate___$SvgPropsMixin] = value; /// @override - String get xlinkArcrole => + dynamic get xlinkArcrole => props[_$key__xlinkArcrole___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkArcrole(String value) => + set xlinkArcrole(dynamic value) => props[_$key__xlinkArcrole___$SvgPropsMixin] = value; /// @override - String get xlinkHref => + dynamic get xlinkHref => props[_$key__xlinkHref___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkHref(String value) => + set xlinkHref(dynamic value) => props[_$key__xlinkHref___$SvgPropsMixin] = value; /// @override - String get xlinkRole => + dynamic get xlinkRole => props[_$key__xlinkRole___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkRole(String value) => + set xlinkRole(dynamic value) => props[_$key__xlinkRole___$SvgPropsMixin] = value; /// @override - String get xlinkShow => + dynamic get xlinkShow => props[_$key__xlinkShow___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkShow(String value) => + set xlinkShow(dynamic value) => props[_$key__xlinkShow___$SvgPropsMixin] = value; /// @override - String get xlinkTitle => + dynamic get xlinkTitle => props[_$key__xlinkTitle___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkTitle(String value) => + set xlinkTitle(dynamic value) => props[_$key__xlinkTitle___$SvgPropsMixin] = value; /// @override - String get xlinkType => + dynamic get xlinkType => props[_$key__xlinkType___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xlinkType(String value) => + set xlinkType(dynamic value) => props[_$key__xlinkType___$SvgPropsMixin] = value; /// @override - String get xmlBase => + dynamic get xmlBase => props[_$key__xmlBase___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xmlBase(String value) => props[_$key__xmlBase___$SvgPropsMixin] = value; + set xmlBase(dynamic value) => props[_$key__xmlBase___$SvgPropsMixin] = value; /// @override - String get xmlLang => + dynamic get xmlLang => props[_$key__xmlLang___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xmlLang(String value) => props[_$key__xmlLang___$SvgPropsMixin] = value; + set xmlLang(dynamic value) => props[_$key__xmlLang___$SvgPropsMixin] = value; /// @override - String get xmlSpace => + dynamic get xmlSpace => props[_$key__xmlSpace___$SvgPropsMixin] ?? null; // Add ` ?? null` to workaround DDC bug: ; /// @override - set xmlSpace(String value) => props[_$key__xmlSpace___$SvgPropsMixin] = value; - - /// - @override - dynamic get cx => - props[_$key__cx___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set cx(dynamic value) => props[_$key__cx___$SvgPropsMixin] = value; - - /// - @override - dynamic get cy => - props[_$key__cy___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set cy(dynamic value) => props[_$key__cy___$SvgPropsMixin] = value; - - /// - @override - dynamic get dx => - props[_$key__dx___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set dx(dynamic value) => props[_$key__dx___$SvgPropsMixin] = value; - - /// - @override - dynamic get dy => - props[_$key__dy___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set dy(dynamic value) => props[_$key__dy___$SvgPropsMixin] = value; - - /// - @override - dynamic get fillOpacity => - props[_$key__fillOpacity___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set fillOpacity(dynamic value) => - props[_$key__fillOpacity___$SvgPropsMixin] = value; - - /// - @override - dynamic get fontSize => - props[_$key__fontSize___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set fontSize(dynamic value) => - props[_$key__fontSize___$SvgPropsMixin] = value; - - /// - @override - dynamic get fx => - props[_$key__fx___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set fx(dynamic value) => props[_$key__fx___$SvgPropsMixin] = value; - - /// - @override - dynamic get fy => - props[_$key__fy___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set fy(dynamic value) => props[_$key__fy___$SvgPropsMixin] = value; - - /// - @override - dynamic get offset => - props[_$key__offset___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set offset(dynamic value) => props[_$key__offset___$SvgPropsMixin] = value; - - /// - @override - dynamic get opacity => - props[_$key__opacity___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set opacity(dynamic value) => props[_$key__opacity___$SvgPropsMixin] = value; - - /// - @override - dynamic get r => - props[_$key__r___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set r(dynamic value) => props[_$key__r___$SvgPropsMixin] = value; - - /// - @override - dynamic get rx => - props[_$key__rx___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set rx(dynamic value) => props[_$key__rx___$SvgPropsMixin] = value; - - /// - @override - dynamic get ry => - props[_$key__ry___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set ry(dynamic value) => props[_$key__ry___$SvgPropsMixin] = value; - - /// - @override - dynamic get stopOpacity => - props[_$key__stopOpacity___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set stopOpacity(dynamic value) => - props[_$key__stopOpacity___$SvgPropsMixin] = value; - - /// - @override - dynamic get strokeDasharray => - props[_$key__strokeDasharray___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set strokeDasharray(dynamic value) => - props[_$key__strokeDasharray___$SvgPropsMixin] = value; - - /// - @override - dynamic get strokeOpacity => - props[_$key__strokeOpacity___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set strokeOpacity(dynamic value) => - props[_$key__strokeOpacity___$SvgPropsMixin] = value; - - /// - @override - dynamic get strokeWidth => - props[_$key__strokeWidth___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set strokeWidth(dynamic value) => - props[_$key__strokeWidth___$SvgPropsMixin] = value; - - /// - @override - dynamic get x1 => - props[_$key__x1___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set x1(dynamic value) => props[_$key__x1___$SvgPropsMixin] = value; - - /// - @override - dynamic get x2 => - props[_$key__x2___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set x2(dynamic value) => props[_$key__x2___$SvgPropsMixin] = value; - - /// - @override - dynamic get x => - props[_$key__x___$SvgPropsMixin] ?? - null; // Add ` ?? null` to workaround DDC bug: ; - /// - @override - set x(dynamic value) => props[_$key__x___$SvgPropsMixin] = value; + set xmlSpace(dynamic value) => + props[_$key__xmlSpace___$SvgPropsMixin] = value; /// @override @@ -3169,12 +3174,28 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { /* GENERATED CONSTANTS */ static const PropDescriptor _$prop__clipPath___$SvgPropsMixin = const PropDescriptor(_$key__clipPath___$SvgPropsMixin); + static const PropDescriptor _$prop__cx___$SvgPropsMixin = + const PropDescriptor(_$key__cx___$SvgPropsMixin); + static const PropDescriptor _$prop__cy___$SvgPropsMixin = + const PropDescriptor(_$key__cy___$SvgPropsMixin); static const PropDescriptor _$prop__d___$SvgPropsMixin = const PropDescriptor(_$key__d___$SvgPropsMixin); + static const PropDescriptor _$prop__dx___$SvgPropsMixin = + const PropDescriptor(_$key__dx___$SvgPropsMixin); + static const PropDescriptor _$prop__dy___$SvgPropsMixin = + const PropDescriptor(_$key__dy___$SvgPropsMixin); static const PropDescriptor _$prop__fill___$SvgPropsMixin = const PropDescriptor(_$key__fill___$SvgPropsMixin); + static const PropDescriptor _$prop__fillOpacity___$SvgPropsMixin = + const PropDescriptor(_$key__fillOpacity___$SvgPropsMixin); static const PropDescriptor _$prop__fontFamily___$SvgPropsMixin = const PropDescriptor(_$key__fontFamily___$SvgPropsMixin); + static const PropDescriptor _$prop__fontSize___$SvgPropsMixin = + const PropDescriptor(_$key__fontSize___$SvgPropsMixin); + static const PropDescriptor _$prop__fx___$SvgPropsMixin = + const PropDescriptor(_$key__fx___$SvgPropsMixin); + static const PropDescriptor _$prop__fy___$SvgPropsMixin = + const PropDescriptor(_$key__fy___$SvgPropsMixin); static const PropDescriptor _$prop__gradientTransform___$SvgPropsMixin = const PropDescriptor(_$key__gradientTransform___$SvgPropsMixin); static const PropDescriptor _$prop__gradientUnits___$SvgPropsMixin = @@ -3185,6 +3206,10 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { const PropDescriptor(_$key__markerMid___$SvgPropsMixin); static const PropDescriptor _$prop__markerStart___$SvgPropsMixin = const PropDescriptor(_$key__markerStart___$SvgPropsMixin); + static const PropDescriptor _$prop__offset___$SvgPropsMixin = + const PropDescriptor(_$key__offset___$SvgPropsMixin); + static const PropDescriptor _$prop__opacity___$SvgPropsMixin = + const PropDescriptor(_$key__opacity___$SvgPropsMixin); static const PropDescriptor _$prop__patternContentUnits___$SvgPropsMixin = const PropDescriptor(_$key__patternContentUnits___$SvgPropsMixin); static const PropDescriptor _$prop__patternUnits___$SvgPropsMixin = @@ -3193,14 +3218,28 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { const PropDescriptor(_$key__points___$SvgPropsMixin); static const PropDescriptor _$prop__preserveAspectRatio___$SvgPropsMixin = const PropDescriptor(_$key__preserveAspectRatio___$SvgPropsMixin); + static const PropDescriptor _$prop__r___$SvgPropsMixin = + const PropDescriptor(_$key__r___$SvgPropsMixin); + static const PropDescriptor _$prop__rx___$SvgPropsMixin = + const PropDescriptor(_$key__rx___$SvgPropsMixin); + static const PropDescriptor _$prop__ry___$SvgPropsMixin = + const PropDescriptor(_$key__ry___$SvgPropsMixin); static const PropDescriptor _$prop__spreadMethod___$SvgPropsMixin = const PropDescriptor(_$key__spreadMethod___$SvgPropsMixin); static const PropDescriptor _$prop__stopColor___$SvgPropsMixin = const PropDescriptor(_$key__stopColor___$SvgPropsMixin); + static const PropDescriptor _$prop__stopOpacity___$SvgPropsMixin = + const PropDescriptor(_$key__stopOpacity___$SvgPropsMixin); static const PropDescriptor _$prop__stroke___$SvgPropsMixin = const PropDescriptor(_$key__stroke___$SvgPropsMixin); + static const PropDescriptor _$prop__strokeDasharray___$SvgPropsMixin = + const PropDescriptor(_$key__strokeDasharray___$SvgPropsMixin); static const PropDescriptor _$prop__strokeLinecap___$SvgPropsMixin = const PropDescriptor(_$key__strokeLinecap___$SvgPropsMixin); + static const PropDescriptor _$prop__strokeOpacity___$SvgPropsMixin = + const PropDescriptor(_$key__strokeOpacity___$SvgPropsMixin); + static const PropDescriptor _$prop__strokeWidth___$SvgPropsMixin = + const PropDescriptor(_$key__strokeWidth___$SvgPropsMixin); static const PropDescriptor _$prop__textAnchor___$SvgPropsMixin = const PropDescriptor(_$key__textAnchor___$SvgPropsMixin); static const PropDescriptor _$prop__transform___$SvgPropsMixin = @@ -3209,6 +3248,12 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { const PropDescriptor(_$key__version___$SvgPropsMixin); static const PropDescriptor _$prop__viewBox___$SvgPropsMixin = const PropDescriptor(_$key__viewBox___$SvgPropsMixin); + static const PropDescriptor _$prop__x1___$SvgPropsMixin = + const PropDescriptor(_$key__x1___$SvgPropsMixin); + static const PropDescriptor _$prop__x2___$SvgPropsMixin = + const PropDescriptor(_$key__x2___$SvgPropsMixin); + static const PropDescriptor _$prop__x___$SvgPropsMixin = + const PropDescriptor(_$key__x___$SvgPropsMixin); static const PropDescriptor _$prop__xlinkActuate___$SvgPropsMixin = const PropDescriptor(_$key__xlinkActuate___$SvgPropsMixin); static const PropDescriptor _$prop__xlinkArcrole___$SvgPropsMixin = @@ -3229,46 +3274,6 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { const PropDescriptor(_$key__xmlLang___$SvgPropsMixin); static const PropDescriptor _$prop__xmlSpace___$SvgPropsMixin = const PropDescriptor(_$key__xmlSpace___$SvgPropsMixin); - static const PropDescriptor _$prop__cx___$SvgPropsMixin = - const PropDescriptor(_$key__cx___$SvgPropsMixin); - static const PropDescriptor _$prop__cy___$SvgPropsMixin = - const PropDescriptor(_$key__cy___$SvgPropsMixin); - static const PropDescriptor _$prop__dx___$SvgPropsMixin = - const PropDescriptor(_$key__dx___$SvgPropsMixin); - static const PropDescriptor _$prop__dy___$SvgPropsMixin = - const PropDescriptor(_$key__dy___$SvgPropsMixin); - static const PropDescriptor _$prop__fillOpacity___$SvgPropsMixin = - const PropDescriptor(_$key__fillOpacity___$SvgPropsMixin); - static const PropDescriptor _$prop__fontSize___$SvgPropsMixin = - const PropDescriptor(_$key__fontSize___$SvgPropsMixin); - static const PropDescriptor _$prop__fx___$SvgPropsMixin = - const PropDescriptor(_$key__fx___$SvgPropsMixin); - static const PropDescriptor _$prop__fy___$SvgPropsMixin = - const PropDescriptor(_$key__fy___$SvgPropsMixin); - static const PropDescriptor _$prop__offset___$SvgPropsMixin = - const PropDescriptor(_$key__offset___$SvgPropsMixin); - static const PropDescriptor _$prop__opacity___$SvgPropsMixin = - const PropDescriptor(_$key__opacity___$SvgPropsMixin); - static const PropDescriptor _$prop__r___$SvgPropsMixin = - const PropDescriptor(_$key__r___$SvgPropsMixin); - static const PropDescriptor _$prop__rx___$SvgPropsMixin = - const PropDescriptor(_$key__rx___$SvgPropsMixin); - static const PropDescriptor _$prop__ry___$SvgPropsMixin = - const PropDescriptor(_$key__ry___$SvgPropsMixin); - static const PropDescriptor _$prop__stopOpacity___$SvgPropsMixin = - const PropDescriptor(_$key__stopOpacity___$SvgPropsMixin); - static const PropDescriptor _$prop__strokeDasharray___$SvgPropsMixin = - const PropDescriptor(_$key__strokeDasharray___$SvgPropsMixin); - static const PropDescriptor _$prop__strokeOpacity___$SvgPropsMixin = - const PropDescriptor(_$key__strokeOpacity___$SvgPropsMixin); - static const PropDescriptor _$prop__strokeWidth___$SvgPropsMixin = - const PropDescriptor(_$key__strokeWidth___$SvgPropsMixin); - static const PropDescriptor _$prop__x1___$SvgPropsMixin = - const PropDescriptor(_$key__x1___$SvgPropsMixin); - static const PropDescriptor _$prop__x2___$SvgPropsMixin = - const PropDescriptor(_$key__x2___$SvgPropsMixin); - static const PropDescriptor _$prop__x___$SvgPropsMixin = - const PropDescriptor(_$key__x___$SvgPropsMixin); static const PropDescriptor _$prop__y1___$SvgPropsMixin = const PropDescriptor(_$key__y1___$SvgPropsMixin); static const PropDescriptor _$prop__y2___$SvgPropsMixin = @@ -3276,29 +3281,50 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { static const PropDescriptor _$prop__y___$SvgPropsMixin = const PropDescriptor(_$key__y___$SvgPropsMixin); static const String _$key__clipPath___$SvgPropsMixin = 'clipPath'; + static const String _$key__cx___$SvgPropsMixin = 'cx'; + static const String _$key__cy___$SvgPropsMixin = 'cy'; static const String _$key__d___$SvgPropsMixin = 'd'; + static const String _$key__dx___$SvgPropsMixin = 'dx'; + static const String _$key__dy___$SvgPropsMixin = 'dy'; static const String _$key__fill___$SvgPropsMixin = 'fill'; + static const String _$key__fillOpacity___$SvgPropsMixin = 'fillOpacity'; static const String _$key__fontFamily___$SvgPropsMixin = 'fontFamily'; + static const String _$key__fontSize___$SvgPropsMixin = 'fontSize'; + static const String _$key__fx___$SvgPropsMixin = 'fx'; + static const String _$key__fy___$SvgPropsMixin = 'fy'; static const String _$key__gradientTransform___$SvgPropsMixin = 'gradientTransform'; static const String _$key__gradientUnits___$SvgPropsMixin = 'gradientUnits'; static const String _$key__markerEnd___$SvgPropsMixin = 'markerEnd'; static const String _$key__markerMid___$SvgPropsMixin = 'markerMid'; static const String _$key__markerStart___$SvgPropsMixin = 'markerStart'; + static const String _$key__offset___$SvgPropsMixin = 'offset'; + static const String _$key__opacity___$SvgPropsMixin = 'opacity'; static const String _$key__patternContentUnits___$SvgPropsMixin = 'patternContentUnits'; static const String _$key__patternUnits___$SvgPropsMixin = 'patternUnits'; static const String _$key__points___$SvgPropsMixin = 'points'; static const String _$key__preserveAspectRatio___$SvgPropsMixin = 'preserveAspectRatio'; + static const String _$key__r___$SvgPropsMixin = 'r'; + static const String _$key__rx___$SvgPropsMixin = 'rx'; + static const String _$key__ry___$SvgPropsMixin = 'ry'; static const String _$key__spreadMethod___$SvgPropsMixin = 'spreadMethod'; static const String _$key__stopColor___$SvgPropsMixin = 'stopColor'; + static const String _$key__stopOpacity___$SvgPropsMixin = 'stopOpacity'; static const String _$key__stroke___$SvgPropsMixin = 'stroke'; + static const String _$key__strokeDasharray___$SvgPropsMixin = + 'strokeDasharray'; static const String _$key__strokeLinecap___$SvgPropsMixin = 'strokeLinecap'; + static const String _$key__strokeOpacity___$SvgPropsMixin = 'strokeOpacity'; + static const String _$key__strokeWidth___$SvgPropsMixin = 'strokeWidth'; static const String _$key__textAnchor___$SvgPropsMixin = 'textAnchor'; static const String _$key__transform___$SvgPropsMixin = 'transform'; static const String _$key__version___$SvgPropsMixin = 'version'; static const String _$key__viewBox___$SvgPropsMixin = 'viewBox'; + static const String _$key__x1___$SvgPropsMixin = 'x1'; + static const String _$key__x2___$SvgPropsMixin = 'x2'; + static const String _$key__x___$SvgPropsMixin = 'x'; static const String _$key__xlinkActuate___$SvgPropsMixin = 'xlinkActuate'; static const String _$key__xlinkArcrole___$SvgPropsMixin = 'xlinkArcrole'; static const String _$key__xlinkHref___$SvgPropsMixin = 'xlinkHref'; @@ -3309,53 +3335,52 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { static const String _$key__xmlBase___$SvgPropsMixin = 'xmlBase'; static const String _$key__xmlLang___$SvgPropsMixin = 'xmlLang'; static const String _$key__xmlSpace___$SvgPropsMixin = 'xmlSpace'; - static const String _$key__cx___$SvgPropsMixin = 'cx'; - static const String _$key__cy___$SvgPropsMixin = 'cy'; - static const String _$key__dx___$SvgPropsMixin = 'dx'; - static const String _$key__dy___$SvgPropsMixin = 'dy'; - static const String _$key__fillOpacity___$SvgPropsMixin = 'fillOpacity'; - static const String _$key__fontSize___$SvgPropsMixin = 'fontSize'; - static const String _$key__fx___$SvgPropsMixin = 'fx'; - static const String _$key__fy___$SvgPropsMixin = 'fy'; - static const String _$key__offset___$SvgPropsMixin = 'offset'; - static const String _$key__opacity___$SvgPropsMixin = 'opacity'; - static const String _$key__r___$SvgPropsMixin = 'r'; - static const String _$key__rx___$SvgPropsMixin = 'rx'; - static const String _$key__ry___$SvgPropsMixin = 'ry'; - static const String _$key__stopOpacity___$SvgPropsMixin = 'stopOpacity'; - static const String _$key__strokeDasharray___$SvgPropsMixin = - 'strokeDasharray'; - static const String _$key__strokeOpacity___$SvgPropsMixin = 'strokeOpacity'; - static const String _$key__strokeWidth___$SvgPropsMixin = 'strokeWidth'; - static const String _$key__x1___$SvgPropsMixin = 'x1'; - static const String _$key__x2___$SvgPropsMixin = 'x2'; - static const String _$key__x___$SvgPropsMixin = 'x'; static const String _$key__y1___$SvgPropsMixin = 'y1'; static const String _$key__y2___$SvgPropsMixin = 'y2'; static const String _$key__y___$SvgPropsMixin = 'y'; static const List $props = const [ _$prop__clipPath___$SvgPropsMixin, + _$prop__cx___$SvgPropsMixin, + _$prop__cy___$SvgPropsMixin, _$prop__d___$SvgPropsMixin, + _$prop__dx___$SvgPropsMixin, + _$prop__dy___$SvgPropsMixin, _$prop__fill___$SvgPropsMixin, + _$prop__fillOpacity___$SvgPropsMixin, _$prop__fontFamily___$SvgPropsMixin, + _$prop__fontSize___$SvgPropsMixin, + _$prop__fx___$SvgPropsMixin, + _$prop__fy___$SvgPropsMixin, _$prop__gradientTransform___$SvgPropsMixin, _$prop__gradientUnits___$SvgPropsMixin, _$prop__markerEnd___$SvgPropsMixin, _$prop__markerMid___$SvgPropsMixin, _$prop__markerStart___$SvgPropsMixin, + _$prop__offset___$SvgPropsMixin, + _$prop__opacity___$SvgPropsMixin, _$prop__patternContentUnits___$SvgPropsMixin, _$prop__patternUnits___$SvgPropsMixin, _$prop__points___$SvgPropsMixin, _$prop__preserveAspectRatio___$SvgPropsMixin, + _$prop__r___$SvgPropsMixin, + _$prop__rx___$SvgPropsMixin, + _$prop__ry___$SvgPropsMixin, _$prop__spreadMethod___$SvgPropsMixin, _$prop__stopColor___$SvgPropsMixin, + _$prop__stopOpacity___$SvgPropsMixin, _$prop__stroke___$SvgPropsMixin, + _$prop__strokeDasharray___$SvgPropsMixin, _$prop__strokeLinecap___$SvgPropsMixin, + _$prop__strokeOpacity___$SvgPropsMixin, + _$prop__strokeWidth___$SvgPropsMixin, _$prop__textAnchor___$SvgPropsMixin, _$prop__transform___$SvgPropsMixin, _$prop__version___$SvgPropsMixin, _$prop__viewBox___$SvgPropsMixin, + _$prop__x1___$SvgPropsMixin, + _$prop__x2___$SvgPropsMixin, + _$prop__x___$SvgPropsMixin, _$prop__xlinkActuate___$SvgPropsMixin, _$prop__xlinkArcrole___$SvgPropsMixin, _$prop__xlinkHref___$SvgPropsMixin, @@ -3366,52 +3391,52 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { _$prop__xmlBase___$SvgPropsMixin, _$prop__xmlLang___$SvgPropsMixin, _$prop__xmlSpace___$SvgPropsMixin, - _$prop__cx___$SvgPropsMixin, - _$prop__cy___$SvgPropsMixin, - _$prop__dx___$SvgPropsMixin, - _$prop__dy___$SvgPropsMixin, - _$prop__fillOpacity___$SvgPropsMixin, - _$prop__fontSize___$SvgPropsMixin, - _$prop__fx___$SvgPropsMixin, - _$prop__fy___$SvgPropsMixin, - _$prop__offset___$SvgPropsMixin, - _$prop__opacity___$SvgPropsMixin, - _$prop__r___$SvgPropsMixin, - _$prop__rx___$SvgPropsMixin, - _$prop__ry___$SvgPropsMixin, - _$prop__stopOpacity___$SvgPropsMixin, - _$prop__strokeDasharray___$SvgPropsMixin, - _$prop__strokeOpacity___$SvgPropsMixin, - _$prop__strokeWidth___$SvgPropsMixin, - _$prop__x1___$SvgPropsMixin, - _$prop__x2___$SvgPropsMixin, - _$prop__x___$SvgPropsMixin, _$prop__y1___$SvgPropsMixin, _$prop__y2___$SvgPropsMixin, _$prop__y___$SvgPropsMixin ]; static const List $propKeys = const [ _$key__clipPath___$SvgPropsMixin, + _$key__cx___$SvgPropsMixin, + _$key__cy___$SvgPropsMixin, _$key__d___$SvgPropsMixin, + _$key__dx___$SvgPropsMixin, + _$key__dy___$SvgPropsMixin, _$key__fill___$SvgPropsMixin, + _$key__fillOpacity___$SvgPropsMixin, _$key__fontFamily___$SvgPropsMixin, + _$key__fontSize___$SvgPropsMixin, + _$key__fx___$SvgPropsMixin, + _$key__fy___$SvgPropsMixin, _$key__gradientTransform___$SvgPropsMixin, _$key__gradientUnits___$SvgPropsMixin, _$key__markerEnd___$SvgPropsMixin, _$key__markerMid___$SvgPropsMixin, _$key__markerStart___$SvgPropsMixin, + _$key__offset___$SvgPropsMixin, + _$key__opacity___$SvgPropsMixin, _$key__patternContentUnits___$SvgPropsMixin, _$key__patternUnits___$SvgPropsMixin, _$key__points___$SvgPropsMixin, _$key__preserveAspectRatio___$SvgPropsMixin, + _$key__r___$SvgPropsMixin, + _$key__rx___$SvgPropsMixin, + _$key__ry___$SvgPropsMixin, _$key__spreadMethod___$SvgPropsMixin, _$key__stopColor___$SvgPropsMixin, + _$key__stopOpacity___$SvgPropsMixin, _$key__stroke___$SvgPropsMixin, + _$key__strokeDasharray___$SvgPropsMixin, _$key__strokeLinecap___$SvgPropsMixin, + _$key__strokeOpacity___$SvgPropsMixin, + _$key__strokeWidth___$SvgPropsMixin, _$key__textAnchor___$SvgPropsMixin, _$key__transform___$SvgPropsMixin, _$key__version___$SvgPropsMixin, _$key__viewBox___$SvgPropsMixin, + _$key__x1___$SvgPropsMixin, + _$key__x2___$SvgPropsMixin, + _$key__x___$SvgPropsMixin, _$key__xlinkActuate___$SvgPropsMixin, _$key__xlinkArcrole___$SvgPropsMixin, _$key__xlinkHref___$SvgPropsMixin, @@ -3422,26 +3447,6 @@ abstract class SvgPropsMixin implements _$SvgPropsMixin { _$key__xmlBase___$SvgPropsMixin, _$key__xmlLang___$SvgPropsMixin, _$key__xmlSpace___$SvgPropsMixin, - _$key__cx___$SvgPropsMixin, - _$key__cy___$SvgPropsMixin, - _$key__dx___$SvgPropsMixin, - _$key__dy___$SvgPropsMixin, - _$key__fillOpacity___$SvgPropsMixin, - _$key__fontSize___$SvgPropsMixin, - _$key__fx___$SvgPropsMixin, - _$key__fy___$SvgPropsMixin, - _$key__offset___$SvgPropsMixin, - _$key__opacity___$SvgPropsMixin, - _$key__r___$SvgPropsMixin, - _$key__rx___$SvgPropsMixin, - _$key__ry___$SvgPropsMixin, - _$key__stopOpacity___$SvgPropsMixin, - _$key__strokeDasharray___$SvgPropsMixin, - _$key__strokeOpacity___$SvgPropsMixin, - _$key__strokeWidth___$SvgPropsMixin, - _$key__x1___$SvgPropsMixin, - _$key__x2___$SvgPropsMixin, - _$key__x___$SvgPropsMixin, _$key__y1___$SvgPropsMixin, _$key__y2___$SvgPropsMixin, _$key__y___$SvgPropsMixin