-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
65 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
import 'dart:ffi'; | ||
|
||
// sekedar buat test | ||
|
||
// ignore_for_file: non_constant_identifier_names | ||
|
||
class Book { | ||
int isbn13; | ||
String title; | ||
String authors; | ||
String categories; | ||
String thumbnail; | ||
String description; | ||
int published_year; | ||
int page_count; | ||
int overall_rating; //sementara int dulu, gatau kenapa kalo pake Float dia tu parameternya error | ||
int favorites_count; | ||
int isbn13; | ||
String title; | ||
String authors; | ||
String categories; | ||
String thumbnail; | ||
String description; | ||
int published_year; | ||
int page_count; | ||
int overall_rating; //sementara int dulu, gatau kenapa kalo pake Float dia tu parameternya error | ||
int favorites_count; | ||
|
||
Book( | ||
this.isbn13, | ||
this.title, | ||
this.authors, | ||
this.categories, | ||
this.thumbnail, | ||
this.description, | ||
this.published_year, | ||
this.page_count, | ||
this.overall_rating, | ||
this.favorites_count, | ||
); | ||
} | ||
Book( | ||
this.isbn13, | ||
this.title, | ||
this.authors, | ||
this.categories, | ||
this.thumbnail, | ||
this.description, | ||
this.published_year, | ||
this.page_count, | ||
this.overall_rating, | ||
this.favorites_count, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
import 'dart:convert'; | ||
|
||
class LibraryBook {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
// ignore_for_file: non_constant_identifier_names | ||
|
||
class Review{ | ||
int stars_rating; | ||
int total_rating; | ||
String status_on_review; | ||
String review_text; | ||
class Review { | ||
int stars_rating; | ||
int total_rating; | ||
String status_on_review; | ||
String review_text; | ||
|
||
|
||
Review( | ||
this.stars_rating, | ||
this.total_rating, | ||
this.status_on_review, | ||
this.review_text, | ||
); | ||
} | ||
Review( | ||
this.stars_rating, | ||
this.total_rating, | ||
this.status_on_review, | ||
this.review_text, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters