Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Savio Grossi
2021-01-11 16:16:24 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
01539d0fd6872604d10ab4f09182f1098a3884c9
01539d0f
1 parent
3444754f
includes GetLifeCycleBase mixin on delete/dispose
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
lib/get_instance/src/get_instance.dart
lib/get_instance/src/get_instance.dart
View file @
01539d0
...
...
@@ -388,9 +388,9 @@ class GetInstance {
return
false
;
}
if
(
i
is
GetLifeCycle
)
{
if
(
i
is
GetLifeCycle
Base
&&
i
.
onDelete
!=
null
)
{
i
.
onDelete
();
Get
.
log
(
'"
$newKey
" on
Clos
e() called'
);
Get
.
log
(
'"
$newKey
" on
Delet
e() called'
);
}
_singl
.
remove
(
newKey
);
...
...
Please
register
or
login
to post a comment