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,
      );