lerp method

Txt lerp(
  1. dynamic txt
)
override

Implementation

Txt lerp(txt) {
  if (txt is Txt)
    _config(
      color: txt._color ?? _color,
      background: txt._backgroundColor ?? _backgroundColor,
      size: txt._size ?? _size,
      shadow: txt._shadow ?? _shadow,
      ink: txt._ink ?? _ink,
    );
  return super.lerp(txt);
}