emit method

Container emit ()

Emits the widgets constructed with the formatting methods.

This should be the last in the chain.

Implementation

Container emit() {
  return Container(
    margin:EdgeInsets.only(top:10),
    child: RichText(
      text:TextSpan(
          style:TextStyle(color:color),
          children:_list)
    ),
  );
}