userLogin static method

Future<bool> userLogin(
  1. String userId
)

Implementation

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