create method

Future<(UResponse<String>?, UEmptyResponse?, String?)> create({
  1. required UBlogCreateParams p,
  2. dynamic onOk(
    1. UResponse<String> r
    )?,
  3. dynamic onError(
    1. UEmptyResponse e
    )?,
  4. dynamic onException(
    1. String e
    )?,
})

Implementation

Future<(UResponse<String>?, UEmptyResponse?, String?)> create({
  required UBlogCreateParams p,
  Function(UResponse<String> r)? onOk,
  Function(UEmptyResponse e)? onError,
  Function(String e)? onException,
}) => _Api.call("/Blog/Create", p.toMap(), _Api.raw<String>(), _Api.empty, onOk, onError, onException);