getContactSketch method

Future<ContactSketch> getContactSketch(
  1. String token
)

Implementation

Future<ContactSketch> getContactSketch(String token) async {
  final String? response = await _channel.invokeMethod<String>(
    'getContactSketch',
    token,
  );
  if (response == null) {
    throw Exception();
  }
  return ContactSketch.fromJson(response);
}