Skip to content

Instantly share code, notes, and snippets.

@SOS77777
Created January 26, 2020 03:05
Show Gist options
  • Save SOS77777/7b96dbf8993a44cdbf741aa10dd3d8fd to your computer and use it in GitHub Desktop.
Save SOS77777/7b96dbf8993a44cdbf741aa10dd3d8fd to your computer and use it in GitHub Desktop.
extends
class Human{
String _name;
int _age;
Human (this._name , this._age);
void test( ){
_age;
}
void asdqw(){
this.test();
}
}
import 'package:Education1/episode%20twelve.dart';
class werath extends Human{
werath(String name, int age) : super(name, age);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment