Files
FlutterNewsApp/lib/models/article.dart
Sanskar Tiwari dc589966b5 Initial commit
2020-03-19 10:49:27 +05:30

16 lines
280 B
Dart

class Article{
String title;
String author;
String description;
String urlToImage;
DateTime publshedAt;
String content;
String articleUrl;
Article({this.title,this.description,this.author,this.content,this.publshedAt,
this.urlToImage, this.articleUrl});
}