Вы можете использовать RichText
RichText(
text: TextSpan(
style: DefaultTextStyle.of(context).style,
children: <TextSpan>[
TextSpan(text: 'This is My Text and ',),
TextSpan(text: 'this text', style: TextStyle(color: Colors.lightBlue)),
TextSpan(text: ' should be in Blue Okay and ',),
TextSpan(text: 'this text should be green', style: TextStyle(color: Colors.green)),
TextSpan(text: ', thank you!'),
],
),
)