$ObjectIdentifier.fromJson constructor

$ObjectIdentifier.fromJson(
  1. Map json_
)

Implementation

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