I have created class Blabel that extends StatelessWidget. I want to extend it to Blabel1 , keeping all of its properties and adding some extra properties to it.
Let's say I would like to add textDirection
property to the new class. How can I do it?
Here is the code of Blabel
class that I have:
class Blabel extends StatelessWidget {
final String text;
final TextStyle style;
Blabel({
this.text,
this.style,
});
@override
Widget build(BuildContext context) {
return Text(
text,
style: style ?? CtrBlblStyle(),
);
}
}
question from:https://stackoverflow.com/questions/65661106/create-a-class-that-extends-another-custom-class-in-flutter