userLogin method Null safety
- String userId
Implementation
static Future<bool> userLogin(String userId) async {
final bool restored = await _channel
.invokeMethod('userLogin', <String, dynamic>{'userId': userId});
return restored;
}
static Future<bool> userLogin(String userId) async {
final bool restored = await _channel
.invokeMethod('userLogin', <String, dynamic>{'userId': userId});
return restored;
}