2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 02:05:29 +00:00

.empty() -> []

Turns out .empty() creates an empty list which is fixed length!
This commit is contained in:
Oliver
2021-07-13 00:13:38 +10:00
parent dd39b98ae9
commit 40613c9c36
11 changed files with 16 additions and 16 deletions

View File

@ -133,7 +133,7 @@ class UserProfileDBManager {
final profiles = await store.find(await _db);
List<UserProfile> profileList = new List<UserProfile>.empty();
List<UserProfile> profileList = [];
for (int idx = 0; idx < profiles.length; idx++) {
@ -158,7 +158,7 @@ class UserProfileDBManager {
final profiles = await store.find(await _db);
List<UserProfile> profileList = new List<UserProfile>.empty();
List<UserProfile> profileList = [];
for (int idx = 0; idx < profiles.length; idx++) {