SqlServerDatabaseDetails.fromJson constructor

SqlServerDatabaseDetails.fromJson(
  1. Map _json
)

Implementation

SqlServerDatabaseDetails.fromJson(core.Map _json)
    : this(
        compatibilityLevel: _json.containsKey('compatibilityLevel')
            ? _json['compatibilityLevel'] as core.int
            : null,
        recoveryModel: _json.containsKey('recoveryModel')
            ? _json['recoveryModel'] as core.String
            : null,
      );