$ObjectIdentifier.fromJson constructor

$ObjectIdentifier.fromJson(
  1. Map json_
)

Implementation

$ObjectIdentifier.fromJson(core.Map json_)
    : this(
        schema: json_['schema'] as core.String?,
        table: json_['table'] as core.String?,
      );