call method

T call({
  1. AlignmentGeometry? alignment,
  2. double? widthFactor,
  3. double? heightFactor,
})

Implementation

T call({
  AlignmentGeometry? alignment,
  double? widthFactor,
  double? heightFactor,
}) {
  return builder(
    AlignModifierAttribute(
      alignment: alignment,
      widthFactor: widthFactor,
      heightFactor: heightFactor,
    ),
  );
}