registerPush method
Implementation
@override
Future<TimPushResult<void>> registerPush({
int? sdkAppId,
String? appKey,
int? businessId,
}) async {
await _ensureMethodHandler();
return _invokeVoid(
'registerPush',
<String, dynamic>{
'sdk_app_id': sdkAppId,
'app_key': appKey,
'business_id': businessId,
},
);
}