Answers for "flutter jsonencode list"

5

dart jsonencode list

import 'dart:convert';

main() {
  List<String> tags = ['tagA', 'tagB', 'tagC'];
  String jsonTags = jsonEncode(tags);
  print(jsonTags);      // ["tagA","tagB","tagC"]
}
Posted by: Guest on May-19-2021
0

json to list flutter

List<UserModel> users = (json.decode(response.body) as List)
      .map((data) => UserModel.fromJson(data))
      .toList();
Posted by: Guest on July-28-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language