@override Future<void> setUserId(String userId) async { try { return await methodChannel.invokeMethod("setUserId", {'userId': userId}); } on PlatformException catch (e) { throw Exception(e.message); } }