MysqlObjectIdentifier.fromJson constructor
MysqlObjectIdentifier.fromJson(
- Map json_
Implementation
MysqlObjectIdentifier.fromJson(core.Map json_)
: this(
database: json_.containsKey('database')
? json_['database'] as core.String
: null,
table:
json_.containsKey('table') ? json_['table'] as core.String : null,
);