gen 2.0.7
This commit is contained in:
parent
29c831a45e
commit
64c5168c6f
5 changed files with 13 additions and 3 deletions
|
@ -1,2 +1,2 @@
|
||||||
# Generated by pub on 2018-03-29 15:50:32.802835.
|
# Generated by pub on 2018-05-15 15:52:57.402230.
|
||||||
angel_serialize:lib/
|
angel_serialize:lib/
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# 2.0.2
|
||||||
|
* Added `DefaultValue`.
|
||||||
|
|
||||||
# 2.0.1
|
# 2.0.1
|
||||||
* Added `Serializers.typescript`.
|
* Added `Serializers.typescript`.
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,13 @@ class Exclude {
|
||||||
|
|
||||||
const Exclude exclude = const Exclude();
|
const Exclude exclude = const Exclude();
|
||||||
|
|
||||||
|
/// Marks a field as having a default value.
|
||||||
|
class DefaultValue {
|
||||||
|
final value;
|
||||||
|
|
||||||
|
const DefaultValue(this.value);
|
||||||
|
}
|
||||||
|
|
||||||
/// Marks a class as eligible for serialization.
|
/// Marks a class as eligible for serialization.
|
||||||
class Serializable {
|
class Serializable {
|
||||||
const Serializable(
|
const Serializable(
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel_serialize
|
name: angel_serialize
|
||||||
version: 2.0.1
|
version: 2.0.2
|
||||||
description: Static annotations powering Angel model serialization. Combine with angel_serialize_generator for flexible modeling.
|
description: Static annotations powering Angel model serialization. Combine with angel_serialize_generator for flexible modeling.
|
||||||
author: Tobe O <thosakwe@gmail.com>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
homepage: https://github.com/angel-dart/serialize
|
homepage: https://github.com/angel-dart/serialize
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel_serialize_generator
|
name: angel_serialize_generator
|
||||||
version: 2.0.6
|
version: 2.0.7
|
||||||
description: Model serialization generators, designed for use with Angel. Combine with angel_serialize for flexible modeling.
|
description: Model serialization generators, designed for use with Angel. Combine with angel_serialize for flexible modeling.
|
||||||
author: Tobe O <thosakwe@gmail.com>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
homepage: https://github.com/angel-dart/serialize
|
homepage: https://github.com/angel-dart/serialize
|
||||||
|
|
Loading…
Reference in a new issue