checked_yaml 2.0.3 copy "checked_yaml: ^2.0.3" to clipboard
checked_yaml: ^2.0.3 copied to clipboard

Generate more helpful exceptions when decoding YAML documents using package:json_serializable and package:yaml.

example/example.dart

// Copyright (c) 2019, 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 'dart:io';

import 'package:checked_yaml/checked_yaml.dart';
import 'package:json_annotation/json_annotation.dart';

part 'example.g.dart';

@JsonSerializable(
  anyMap: true,
  checked: true,
  disallowUnrecognizedKeys: true,
)
class Configuration {
  @JsonKey(required: true)
  final String name;
  final int count;

  Configuration({required this.name, required this.count}) {
    if (name.isEmpty) {
      throw ArgumentError.value(name, 'name', 'Cannot be empty.');
    }
  }

  factory Configuration.fromJson(Map json) => _$ConfigurationFromJson(json);

  Map<String, dynamic> toJson() => _$ConfigurationToJson(this);

  @override
  String toString() => 'Configuration: ${toJson()}';
}

void main(List<String> arguments) {
  final sourcePathOrYaml = arguments.single;
  String yamlContent;
  Uri? sourceUri;

  if (FileSystemEntity.isFileSync(sourcePathOrYaml)) {
    yamlContent = File(sourcePathOrYaml).readAsStringSync();
    sourceUri = Uri.parse(sourcePathOrYaml);
  } else {
    yamlContent = sourcePathOrYaml;
  }

  final config = checkedYamlDecode(
    yamlContent,
    (m) => Configuration.fromJson(m!),
    sourceUrl: sourceUri,
  );
  print(config);
}
29
likes
140
pub points
99%
popularity

Publisher

verified publishergoogle.dev

Generate more helpful exceptions when decoding YAML documents using package:json_serializable and package:yaml.

Repository (GitHub)
View/report issues

Topics

#yaml #json #build-runner #json-serializable #codegen

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

json_annotation, source_span, yaml

More

Packages that depend on checked_yaml