SqlServerFeature.fromJson constructor

SqlServerFeature.fromJson(
  1. Map json_
)

Implementation

SqlServerFeature.fromJson(core.Map json_)
  : this(
      enabled: json_['enabled'] as core.bool?,
      featureName: json_['featureName'] as core.String?,
    );