PropertyOrder.fromJson constructor

PropertyOrder.fromJson(
  1. Map json_
)

Implementation

PropertyOrder.fromJson(core.Map json_)
  : this(
      direction: json_['direction'] as core.String?,
      property: json_.containsKey('property')
          ? PropertyReference.fromJson(
              json_['property'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );