Attributes constructor

Attributes(
  1. AttributesType _type,
  2. String? _json
)

Implementation

Attributes(this._type, this._json)
    : assert((_type == AttributesType.NULL) ||
          (_type != AttributesType.NULL && _json != null));