“DART LISTA DE OBJETOS A JSON” Código de respuesta

Lista de dardos a JSON

import 'dart:convert';

main() {
  List<String> tags = ['tagA', 'tagB', 'tagC'];
  String jsonTags = jsonEncode(tags);
  print(jsonTags);      // ["tagA","tagB","tagC"]
}
VasteMonde

DART LISTA DE OBJETOS A JSON

class User {
  String name;
  int age;
  User(this.name, this.age);
  Map toJson() => { // You must create this toJson() method else you will get an error
        'name': name,
        'age': age,
      };
}


//Now in your main fucntion, use jsonEncode
import 'dart:convert';
main() {
  User user = User('Shristi Gautam', 25);
  String jsonUser = jsonEncode(user);
  print(jsonUser);
}

The result will be something like {"name":"Shristi Gautam","age":25}
Powerful Polecat

Respuestas similares a “DART LISTA DE OBJETOS A JSON”

Preguntas similares a “DART LISTA DE OBJETOS A JSON”

Más respuestas relacionadas con “DART LISTA DE OBJETOS A JSON” en Dart

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código