send static method

Future<String> send({
  1. required String xml,
})

Implementation

static Future<String> send({required String xml}) async {
  return _instance.socketService.sendSocketMessage(xml);
}