SupportedRuntimeFeatures.fromJson constructor

SupportedRuntimeFeatures.fromJson(
  1. Map json_
)

Implementation

SupportedRuntimeFeatures.fromJson(core.Map json_)
  : this(
      actionApis: json_['actionApis'] as core.bool?,
      asyncOperations: json_['asyncOperations'] as core.bool?,
      entityApis: json_['entityApis'] as core.bool?,
      sqlQuery: json_['sqlQuery'] as core.bool?,
    );