MysqlObjectIdentifier.fromJson constructor

MysqlObjectIdentifier.fromJson(
  1. Map json_
)

Implementation

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