insertRow method
Future<(UResponse<UDbQueryResultResponse> ?, UEmptyResponse?, String?)>
insertRow({
- required UDbAdminInsertRowParams p,
- required dynamic onOk(),
- required dynamic onError(),
- required dynamic onException(
- String e
Implementation
Future<(UResponse<UDbQueryResultResponse>?, UEmptyResponse?, String?)> insertRow({
required UDbAdminInsertRowParams p,
required Function(UResponse<UDbQueryResultResponse> r) onOk,
required Function(UEmptyResponse e) onError,
required Function(String e) onException,
}) => _query("InsertRow", p.toMap(), onOk, onError, onException);