2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-12-15 17:00:23 +00:00

null-safety

This commit is contained in:
2021-07-24 13:12:43 +03:00
parent 6be04c39ed
commit 614c6853e3
48 changed files with 3022 additions and 3320 deletions

View File

@@ -17,12 +17,8 @@ class MemberTemplate
TypeTemplate get template => _template;
MemberTemplate(TypeTemplate template, MemberType type, int index, String name)
MemberTemplate(this._template, this._type, this._index, this._name)
{
this._template = template;
this._type = type;
this._index = index;
this._name = name;
}
String get fullname => _template.className + "." + _name;