id property

  1. @override
String id
override

Get a unique id for this device.

Implementation

@override
String get id => (configuration != null)
    ? (Platform.isIOS)
        ? "Apple Health"
        : "Google Health Connect"
    : 'N/A';