User.dart 152 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 /* * @author lsy * @date 2019-09-03 **/ library User; class User { final String key; final Object type; const User(this.key, this.type); }