$Entity.fromJson constructor

$Entity.fromJson(
  1. Map json_
)

Implementation

$Entity.fromJson(core.Map json_)
    : this(
        customFeatures: json_.containsKey('customFeatures')
            ? json_['customFeatures'] as core.Map<core.String, core.dynamic>
            : null,
      );