identityGet abstract method

  1. @Post(path: '/identity/get')
Future<Response<IdentityGetResponse>> identityGet({
  1. @Body() @required IdentityGetRequest? body,
})

Retrieve identity data @param body

Implementation

@Post(path: '/identity/get')
Future<chopper.Response<IdentityGetResponse>> identityGet(
    {@Body() @required IdentityGetRequest? body});