Source
@DomName('Translation.Translation') @DocsEditable() factory Translation(LengthValue x, LengthValue y, [LengthValue z]) { if ((y is LengthValue) && (x is LengthValue) && z == null) { return _blink.BlinkTranslation.instance.constructorCallback_2_(x, y); } if ((z is LengthValue) && (y is LengthValue) && (x is LengthValue)) { return _blink.BlinkTranslation.instance.constructorCallback_3_(x, y, z); } throw new ArgumentError("Incorrect number or type of arguments"); }