send static method

Future<Map<String, dynamic>> send(
  1. int type,
  2. String content,
  3. int space,
  4. String extras,
)

Implementation

static Future<Map<String, dynamic>> send(int type, String content, int space, String extras) async {
	final Map resMap = await _channel.invokeMethod('send', {
          'type': type,
          'content': content,
          'space': space,
          'extrasMap': extras
        });
	return Map<String, dynamic>.from(resMap);
}