create method
Implementation
void create({required UHotelCreateParams p}) => UServices.hotel.createHotel(
p: p,
onOk: (UResponse<String> r) => okCallback(r.message, read),
onError: (UEmptyResponse r) => errorCallBack(r.message, read),
onException: (String e) => errorCallBack(U.s.errorSubmittingForm, read),
);