lerp static method

Implementation

static DividerThemeData lerp(
    DividerThemeData? a, DividerThemeData? b, double t) {
  return DividerThemeData(
    decoration: Decoration.lerp(a?.decoration, b?.decoration, t),
    thickness: lerpDouble(a?.thickness, b?.thickness, t),
    horizontalMargin:
        EdgeInsetsGeometry.lerp(a?.horizontalMargin, b?.horizontalMargin, t),
    verticalMargin:
        EdgeInsetsGeometry.lerp(a?.verticalMargin, b?.verticalMargin, t),
  );
}