checkShortName method
Check Short Name.
ID: 284b3639.
Implementation
Future<Result<Boolean>> checkShortName({required String shortName}) async {
// Preparing the request.
final request = StickersCheckShortName(shortName: shortName);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}