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
Jonny Borges
2020-07-20 09:29:28 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2020-07-20 09:29:28 -0300
Commit
78ccd3bdcb8b0433efa605f88e9f090044542140
78ccd3bd
2 parents
09754eca
a7f23cb2
Merge pull request #406 from TheGhostDevlopper/master
replace apiModel with null
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
example/lib/home/data/home_provider.dart
example/lib/home/data/home_provider.dart
View file @
78ccd3b
...
...
@@ -8,7 +8,7 @@ class HomeProvider {
return
ApiModel
.
fromJson
(
response
.
data
);
}
catch
(
e
)
{
print
(
e
.
toString
());
return
ApiModel
()
;
return
null
;
}
}
}
...
...
Please
register
or
login
to post a comment