lerp static method
Implementation
static CustomDialogThemeData lerp(
CustomDialogThemeData? a, CustomDialogThemeData? b, double t) {
if (a == null && b == null) return CustomDialogThemeData();
return CustomDialogThemeData(
style: CustomDialogStyle.lerp(a?.style, b?.style, t),
);
}