Skip to content

Commit

Permalink
Update core_services.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
champ96k committed Sep 16, 2024
1 parent 04721b4 commit 6a85841
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/core/services/core_services.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import 'dart:async';

import 'package:flutter/foundation.dart';

class CoreServices {
//Write fib series function here
List<int> fibSeries(int n) {
Expand Down Expand Up @@ -27,15 +29,15 @@ class CoreServiceees {

dynamic temp = 12;
void initialize() {
print("initializing Core services");
debugPrint("initializing Core services");
_emptySetupHive();
}

void _emptySetupHive() {
temp = "Hive Initialized ⛑";
}

_init(int value) {
void init(int value) {
_controller.add(value);
}
}

0 comments on commit 6a85841

Please sign in to comment.