Skip to content

Commit

Permalink
chore: code refractor (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasDevApps authored Sep 19, 2024
1 parent 5925c91 commit baedc50
Show file tree
Hide file tree
Showing 9 changed files with 280 additions and 164 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Future<void> main() async {
// Initialize the Lottery instance
await Lottery.initialize(
pathCsv: 'assets\\data_test.csv', // Path to data
numberColumnIndexes: [0, 1, 2, 3], // If the numbers are in the 1,2,3 and 4 column's index
specialNumberColumnIndexes: [4, 5, 6], // If the special numbers are in the 5,6 and 7 column's index
numberIndexes: [0, 1, 2, 3], // If the numbers are in the 1,2,3 and 4 column's index
specialNumberIndexes: [4, 5, 6], // If the special numbers are in the 5,6 and 7 column's index
);
// Run the app
runApp(const MyApp());
Expand Down
Loading

0 comments on commit baedc50

Please sign in to comment.