DefineShape constructor
DefineShape([])
Define shape with parameters
Implementation
factory DefineShape([
Attribute? p1,
Attribute? p2,
Attribute? p3,
Attribute? p4,
Attribute? p5,
Attribute? p6,
Attribute? p7,
Attribute? p8,
Attribute? p9,
Attribute? p10,
Attribute? p11,
Attribute? p12,
]) {
final params =
utilityParamToList(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12);
return DefineShape._(params);
}