lerp static method

Returns the treemap theme data

Implementation

static SfTreemapThemeData? lerp(
  SfTreemapThemeData? a,
  SfTreemapThemeData? b,
  double t,
) {
  if (a == null && b == null) {
    return null;
  }
  return SfTreemapThemeData(
    legendTextStyle: TextStyle.lerp(
      a!.legendTextStyle,
      b!.legendTextStyle,
      t,
    ),
  );
}