CSSTranslate constructor

CSSTranslate(
  1. CSSNumericValue x,
  2. CSSNumericValue y, [
  3. CSSNumericValue? z
])

Implementation

factory CSSTranslate(CSSNumericValue x, CSSNumericValue y,
        [CSSNumericValue? z]) =>
    CSSTranslate._(x, y, z ?? undefined);