Skip to content

Commit a3ab64e

Browse files
committed
Bug Fix
1 parent 20779f0 commit a3ab64e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/core/api_service/abstract/i_api_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class IApiService<T> {
1+
abstract class IApiService<T> {
22
Future<T?>? get({
33
required String path,
44
Map<String, String>? headers,

lib/core/local_database/abstract/i_local_database_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:sqflite/sqflite.dart';
22

3-
class ILocalDatabaseService {
3+
abstract class ILocalDatabaseService {
44
Future<Database>? get db {}
55
Future<Database>? initializeDb(String dbName) {}
66
Future<bool?>? deleteDb(Database db) {}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'i_result.dart';
22

3-
class IDataResult<T> extends IResult{
3+
abstract class IDataResult<T> extends IResult{
44
T? get data{}
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class IResult{
1+
abstract class IResult{
22
bool? get success{}
33
String? get message{}
44
}

0 commit comments

Comments
 (0)