child method

Text child(
  1. String value
)

Implementation

Text child(String value) => Text(
      value,
      style: TextStyle(
        color: _color,
        fontFamily: _family,
        fontSize: _size,
      ),
    );