schema method
Future<(UResponse<UDbAdminTableSchemaResponse> ?, UEmptyResponse?, String?)>
schema({
- required UDbAdminTableSchemaParams p,
- required dynamic onOk(),
- required dynamic onError(),
- required dynamic onException(
- String e
Implementation
Future<(UResponse<UDbAdminTableSchemaResponse>?, UEmptyResponse?, String?)> schema({
required UDbAdminTableSchemaParams p,
required Function(UResponse<UDbAdminTableSchemaResponse> r) onOk,
required Function(UEmptyResponse e) onError,
required Function(String e) onException,
}) => _Api.call("/DbAdmin/Schema", p.toMap(), _Api.one(UDbAdminTableSchemaResponse.fromMap), _Api.empty, onOk, onError, onException);