setTs static method

void setTs({
  1. Color? txColor,
  2. Color? bgColor,
  3. dynamic child,
})

Implementation

static void setTs({
  Color? txColor,
  Color? bgColor,
  child,
}) {
  tsTxColor = txColor;
  tsBgColor = bgColor;
  tsChild = child;
}