From ad89bb8b2fcb7ab988323cf7721cc72fceadbaf1 Mon Sep 17 00:00:00 2001 From: Bepitic Date: Wed, 30 Aug 2023 22:00:59 +0200 Subject: [PATCH] Remove model not being used --- explain_rol/lib/data_model.dart | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 explain_rol/lib/data_model.dart diff --git a/explain_rol/lib/data_model.dart b/explain_rol/lib/data_model.dart deleted file mode 100644 index a1c294f..0000000 --- a/explain_rol/lib/data_model.dart +++ /dev/null @@ -1,24 +0,0 @@ -// import 'package:flutter/material.dart'; - -class DataModel { - String name; - String race; - String action; - String dice; - String difficulty; - - DataModel( - {required this.name, - required this.race, - required this.action, - required this.dice, - required this.difficulty}); -} - -// { -// "name": "Farhat", -// "race": "goblin", -// "action": "hit the enemy throwing an arrow with the hand", -// "dice": "10", -// "difficulty": "5" -// }