pickFullContact static method

Future<FullContact> pickFullContact({
  1. bool askForPermission = true,
})

Picks a full contact This is only supported on Android and on the web platform See Also FullContact See Also pickFullContacts

Implementation

static Future<FullContact> pickFullContact(
        {

        /// Whether to automatically request the required permission if needed or not (See [requestPermission] and [hasPermission])
        bool askForPermission = true}) async =>
    ContactPickerPlatform.instance
        .pickFullContact(askForPermission: askForPermission);