PropertyDisplayOptions.fromJson constructor

PropertyDisplayOptions.fromJson(
  1. Map json_
)

Implementation

PropertyDisplayOptions.fromJson(core.Map json_)
    : this(
        displayLabel: json_.containsKey('displayLabel')
            ? json_['displayLabel'] as core.String
            : null,
      );