dart inheritance

118

class Childclass extends ParentClass {
…
}
class A extends B {}
class B implements A {}

/*Common fixes
Change the type hierarchy so that there’s no circularity*/

Comments

Submit
0 Comments