Skip to content

Instantly share code, notes, and snippets.

@jairoFernandez
Created December 15, 2020 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jairoFernandez/715f7f442cb2749b25c3efbecd1f3c3a to your computer and use it in GitHub Desktop.
Save jairoFernandez/715f7f442cb2749b25c3efbecd1f3c3a to your computer and use it in GitHub Desktop.
Indexer
indexerListUser(List<dynamic> users) {
final data = [];
for (var i = 0; i < users.length; i++) {
data.add({users[i]['id']: users[i]});
}
return data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment