SourceObjectIdentifier.fromJson constructor

SourceObjectIdentifier.fromJson(
  1. Map json_
)

Implementation

SourceObjectIdentifier.fromJson(core.Map json_)
  : this(
      database: json_['database'] as core.String?,
      schema: json_['schema'] as core.String?,
      table: json_['table'] as core.String?,
      type: json_['type'] as core.String?,
    );