setUp static method

Widget setUp(
  1. String setText,
  2. double setSize,
  3. bool setWeight,
  4. Color setColor,
  5. Color setBackgroundColor,
)

initial setting up of the widget

Implementation

static Widget setUp(String setText, double setSize, bool setWeight, Color setColor, Color setBackgroundColor) {
  return new AsTextView(
    text: setText,
    fsize: setSize,
    isbold: setWeight,
    color: setColor,
    backgroundColor: setBackgroundColor,
  );
}