Retrieves the platform.
@override Future<String> getPlatform() async { if (Platform.isAndroid) { return 'Android'; } else if (Platform.isIOS) { return 'iOS'; } else { return 'Unknown'; } }