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