SqlServerServerFlag.fromJson constructor

SqlServerServerFlag.fromJson(
  1. Map json_
)

Implementation

SqlServerServerFlag.fromJson(core.Map json_)
    : this(
        serverFlagName: json_['serverFlagName'] as core.String?,
        value: json_['value'] as core.String?,
        valueInUse: json_['valueInUse'] as core.String?,
      );