I am trying to understand how to use extension methods in dart/flutter.
the extension
extension on Text {
Text get boldCardTitle {
return Text(this.data!, style:const TextStyle(fontSize: 20, fontWeight: FontWeight.w500) );
}
}
I am trying to do something like this, and have it inherit those styles
Text('5401 Odom Ave \nFort Worth, TX 76114').boldCardTitle,