all method

Future<List<FContact>> all ()

Implementation

static Future<List<FContact>> all() async {
  Iterable all = await _channel.invokeMethod("list");
  var mapped = all.map((item) => FContact.fromMap(item));
  return mapped.toList();
}