import 'package:angel_model/angel_model.dart'; import 'character.dart'; import 'episode.dart'; import 'starship.dart'; class Human extends Model implements Character { String name; List friends; List appearsIn; List starships; int totalCredits; Human( {this.name, this.friends, this.appearsIn, this.starships, this.totalCredits}); }