SqlServerSchema.fromJson constructor
      
      SqlServerSchema.fromJson(
    
    
- Map json_
Implementation
SqlServerSchema.fromJson(core.Map json_)
  : this(
      schema: json_['schema'] as core.String?,
      tables:
          (json_['tables'] as core.List?)
              ?.map(
                (value) => SqlServerTable.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );