You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
374 B
Dart
14 lines
374 B
Dart
import 'package:tangheem/models/surah_model.dart';
|
|
|
|
class SurahAppState {
|
|
static final SurahAppState _instance = SurahAppState._internal();
|
|
SurahAppState._internal();
|
|
factory SurahAppState() => _instance;
|
|
|
|
SurahModel _surahModel;
|
|
SurahModel get getSurahModel => _surahModel;
|
|
void setSurahModel(SurahModel _surahModel) {
|
|
this._surahModel = _surahModel;
|
|
}
|
|
}
|