In Dart i figure out that we can implement from an abstract class, is that possible, what I know from my background is: that we can only implement from an interface and extend from abstract, how's that is possible?
abstract class A{
int aa;
String bb;
String c;
}
class B implements A{
@override
int aa= 100;
@override
String bb= "testtesttets";
@override
String cc= "testtesttets";
}