json_string 1.0.1 copy "json_string: ^1.0.1" to clipboard
json_string: ^1.0.1 copied to clipboard

outdated

A simple and lightweight JSON data container for Dart and Flutter.

example/json_string_example.dart

import 'package:json_string/json_string.dart';
import 'package:collection/collection.dart';

void main() {
  const externalSource = '{"username":"john_doe","password":"querty"}';
  var jsonString = JsonString.orNull(externalSource);
  if (jsonString == null) {
    print("Bad source!");
  }
  final user1 = jsonString.decodeAsObject(User.fromJson);
  final user2 = User(username: 'clara_brothers', password: 'asdfgh');
  final userList = [user1, user2];

  jsonString = JsonString.encodeObjectList(userList);
  final internalSource = jsonString.source;
  print(internalSource);

  final decodedList = jsonString.decodeAsObjectList(User.fromJson);
  print(ListEquality().equals(decodedList, userList)); // true
}

class User with Jsonable {
  String username;
  String password;

  User({
    this.username,
    this.password,
  });

  static User fromJson(Map<String, dynamic> json) => User(
        username: json['username'],
        password: json['password'],
      );

  Map<String, dynamic> toJson() => {
        'username': username,
        'password': password,
      };

  @override
  bool operator ==(Object other) =>
      identical(this, other) ||
      other is User &&
          runtimeType == other.runtimeType &&
          username == other.username &&
          password == other.password;
}
6
likes
0
pub points
73%
popularity

Publisher

verified publisherparsodyl.com

A simple and lightweight JSON data container for Dart and Flutter.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on json_string