schema method

Future<(UResponse<UDbAdminTableSchemaResponse>?, UEmptyResponse?, String?)> schema({
  1. required UDbAdminTableSchemaParams p,
  2. required dynamic onOk(
    1. UResponse<UDbAdminTableSchemaResponse> r
    ),
  3. required dynamic onError(
    1. UEmptyResponse r
    ),
  4. required dynamic onException(
    1. 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);