setUp static method

Widget setUp(
  1. int setType,
  2. String setText,
  3. Color setColor,
  4. Color setContainerColor,
  5. Color setBackgroundColor,
  6. double setBorderRadius,
)

initial setting up of the widget

Implementation

static Widget setUp(int setType, String setText, Color setColor, Color setContainerColor, Color setBackgroundColor, double setBorderRadius) {
  return AsInformer(
    type: setType,
    text: setText,
    color: setColor,
    containerColor: setContainerColor,
    backgroundColor: setBackgroundColor,
    borderRadius: setBorderRadius,
  );
}