platforms top-level property

Map<String, PlatformDetails> platforms
getter/setter pair

Implementation

Map<String, PlatformDetails> platforms = {
  'google_fit': PlatformDetails(
    'Google Fit',
    HekaImages.googleFit,
    false,
    true,
  ),
  'apple_healthkit': PlatformDetails(
    'Apple Health',
    HekaImages.appleHealth,
    true,
    false,
  ),
  'fitbit': PlatformDetails(
    'Fitbit',
    HekaImages.fitbit,
    true,
    true,
  ),
  'strava': PlatformDetails(
    'Strava',
    HekaImages.strava,
    true,
    true,
  ),
  'oura': PlatformDetails(
    'Oura',
    HekaImages.oura,
    true,
    true,
  ),
};