createRoster method

Future<void> createRoster(
  1. String userJid
)

Implementation

Future<void> createRoster(String userJid) async {
  final params = {"user_jid": userJid};
  await _channel.invokeMethod('create_roster', params);
  print('checkNewFeat create roster success');
}