json_serializable 5.0.2 copy "json_serializable: ^5.0.2" to clipboard
json_serializable: ^5.0.2 copied to clipboard

SDKDart
outdated

Automatically generate code for converting to and from JSON by annotating Dart classes.

example/example.dart

// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:json_annotation/json_annotation.dart';

part 'example.g.dart';

@JsonSerializable()
class Person {
  final String firstName;
  final String lastName;
  final DateTime? dateOfBirth;
  Person({required this.firstName, required this.lastName, this.dateOfBirth});
  factory Person.fromJson(Map<String, dynamic> json) => _$PersonFromJson(json);
  Map<String, dynamic> toJson() => _$PersonToJson(this);
}
3339
likes
110
pub points
99%
popularity

Publisher

verified publishergoogle.dev

Automatically generate code for converting to and from JSON by annotating Dart classes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

analyzer, build, build_config, collection, json_annotation, meta, path, source_gen, source_helper

More

Packages that depend on json_serializable