login static method

Shows SumUp login dialog.

Should be called after init.

Implementation

static Future<SumupPluginResponse> login() async {
  _throwIfNotInitialized();
  final method = await _channel.invokeMethod('login');
  return SumupPluginResponse.fromMap(method);
}