SortOrderParameter.fromJson constructor

SortOrderParameter.fromJson(
  1. Map json_
)

Implementation

SortOrderParameter.fromJson(core.Map json_)
  : this(
      fieldSource: json_.containsKey('fieldSource')
          ? FieldSource.fromJson(
              json_['fieldSource'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      sortOrderDirection: json_['sortOrderDirection'] as core.String?,
    );