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,
);