diff --git a/.gemini/settings.json b/.gemini/settings.json new file mode 100644 index 00000000000..715d896d95a --- /dev/null +++ b/.gemini/settings.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "dart": { + "command": "dart", + "args": [ + "mcp-server" + ] + } + }, + "contextFileName": "/.prompts/llm.md" +} diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 9f74ca87b91..9dcd376ea46 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -15,10 +15,10 @@ defaults: shell: bash jobs: - # Run the stable test script on the beta channel. Since this branch will soon - # be merged into main as our stable-targeting code, this is the key thing we - # need to test. - stable-tests-on-beta: + # Test all samples on the beta channel. Since the beta channel will soon be + # promoted to stable, this branch is only concerned with the beta. + Beta-CI: + name: Test flutter beta channel runs-on: ${{ matrix.os }} if: github.repository == 'flutter/samples' strategy: @@ -34,7 +34,7 @@ jobs: - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 with: channel: beta - - run: ./tool/flutter_ci_script_stable.sh + - run: flutter pub get && dart tool/ci_script.dart # Verify the Android add-to-app samples build and pass tests with the beta # channel. @@ -54,16 +54,16 @@ jobs: # Verify the iOS add-to-app samples build and pass tests with the beta # channel. - ios-build: - runs-on: macos-latest - if: github.repository == 'flutter/samples' - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - - uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 - with: - distribution: 'zulu' - java-version: '17' - - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 - with: - channel: beta - - run: ./tool/ios_ci_script.sh + # ios-build: + # runs-on: macos-latest + # if: github.repository == 'flutter/samples' + # steps: + # - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + # - uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 + # with: + # distribution: 'zulu' + # java-version: '17' + # - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 + # with: + # channel: beta + # - run: ./tool/ios_ci_script.sh diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df7dead6ca0..d219f022e4a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - flutter_version: [stable, beta, master] + flutter_version: [stable, beta] os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 @@ -35,7 +35,7 @@ jobs: - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 with: channel: ${{ matrix.flutter_version }} - - run: ./tool/flutter_ci_script_${{ matrix.flutter_version }}.sh + - run: flutter pub get && dart tool/ci_script.dart # android-build: # runs-on: ubuntu-latest @@ -51,16 +51,16 @@ jobs: # channel: stable # - run: ./tool/android_ci_script.sh - ios-build: - runs-on: macos-latest - if: github.repository == 'flutter/samples' - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - - uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 - with: - distribution: 'zulu' - java-version: '17' - - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 - with: - channel: stable - - run: ./tool/ios_ci_script.sh + # ios-build: + # runs-on: macos-latest + # if: github.repository == 'flutter/samples' + # steps: + # - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 + # - uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 + # with: + # distribution: 'zulu' + # java-version: '17' + # - uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 + # with: + # channel: stable + # - run: ./tool/ios_ci_script.sh diff --git a/.gitignore b/.gitignore index ee83909856c..7943f5195b1 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ .pub-cache/ .pub/ /build/ +**/build/ # Android related **/gradle-wrapper.jar @@ -81,3 +82,6 @@ yarn.lock !**/ios/**/default.pbxuser !**/ios/**/default.perspectivev3 !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages + +.claude/ +logs/ diff --git a/.prompts/code_freshness.md b/.prompts/code_freshness.md new file mode 100644 index 00000000000..6b28e9a5e61 --- /dev/null +++ b/.prompts/code_freshness.md @@ -0,0 +1,63 @@ +# Code Health and Style Guide Analysis + +This document provides instructions for an AI assistant to analyze this repository against the Dart and Flutter style guide (`.prompts/llm.md`) and log opportunities for improvement. + +## Workflow + +The AI assistant must follow these steps exactly: + +### 1. Setup + +1. **Create Log Directory**: If it does not already exist, create a directory named `logs` in the repository root. +2. **Create Log File**: Create a new file inside the `logs` directory named `YYYY-MM-DD_HH-MM-SS-freshness-scores.md`, where `YYYY-MM-DD_HH-MM-SS` is the current timestamp. + +### 2. Project Identification + +1. **Find Projects**: Identify all sample projects by searching for `pubspec.yaml` files within the repository. Each directory containing a `pubspec.yaml` should be considered a separate project. +2. **Create a Queue**: Compile a list of the absolute paths to these project directories to process them one by one. + +### 3. Analysis Loop + +For each project directory identified in the previous step, perform the following: + +1. **Check for Dart Files**: + * Verify that the project directory contains at least one `.dart` file. + * If not, add an entry to the log file stating that the project was skipped for this reason and proceed to the next project. + +2. **Analyze Git History**: + * Run `git log` to find the most recent commit to a `.dart` file within that project's directory made by a human (i.e., not a bot). + * **Command**: + ```bash + git log -1 --author='^(?!.*bot).*$' --pretty="format:%ad" --date=short -- ./**/*.dart + ``` + *(Note: This command should be run from within the project's directory).* + * **Handle No Commits**: If the command returns no output, note "No human commits found" for the log. If there are no commits at all, note that as well. + +3. **Read and Assess Code**: + * Read all `.dart` files within the project directory (recursively). + * Compare the code against the rules and patterns defined in `.prompts/llm.md`. + * The assessment must focus on: + * Code organization and structure. + * Adherence to naming conventions. + * Proper use of Flutter and Dart patterns (e.g., `const` constructors, collection literals). + * State management best practices. + * Clarity, readability, and documentation. + +4. **Log Findings**: + * Append a new entry to the log file using the following Markdown template. Ensure all fields are filled out. + + ```markdown + --- + **Sample**: `path/to/sample` + **Last Human Commit**: `YYYY-MM-DD` or "No human commits found" + **Assessment Date**: `YYYY-MM-DD` + + **Summary of Style Guide Adherence**: + A brief, one-paragraph summary of how well the project adheres to the style guide. Mention its strengths and weaknesses in general terms. + + **Opportunities for Improvement**: + - A concrete, actionable bullet point describing a specific area for improvement. + - Another actionable bullet point. + - A third bullet point, if applicable. Focus on providing clear, specific, and helpful recommendations. + --- + ``` \ No newline at end of file diff --git a/.prompts/llm.md b/.prompts/llm.md new file mode 100644 index 00000000000..c31e109c5c5 --- /dev/null +++ b/.prompts/llm.md @@ -0,0 +1,691 @@ +You are an expert Dart and Flutter developer on the Flutter team at Google. Your code must adhere to this style guide. + +## Core Philosophy + +- **Follow Effective Dart guidelines.** +- **Optimize for readability**: Write code that is easy to understand and maintain +- **Write detailed documentation**: Every public API should be well-documented +- **Keep one source of truth**: Avoid duplicating state across your application +- **Design APIs from the developer's perspective**: Consider how the API will be used +- **Create useful error messages**: Error messages should guide developers toward solutions +- **Write tests first**: When fixing bugs, write failing tests first, then fix the bug +- **Avoid workarounds**: Take time to fix problems correctly rather than implementing temporary solutions + +## Naming Conventions + +### Identifier Types (Official Dart Guidelines) + +#### UpperCamelCase +- **Classes**: `MyWidget`, `UserRepository`, `HttpClient` +- **Enum types**: `ButtonType`, `AnimationState`, `ConnectionState` +- **Typedefs**: `EventCallback`, `ValidatorFunction` +- **Type parameters**: ``, ``, `` +- **Extensions**: `StringExtension`, `MyFancyList`, `SmartIterable` + +#### lowerCamelCase +- **Variables**: `userName`, `isLoading`, `itemCount` +- **Parameters**: `onPressed`, `itemBuilder`, `scrollDirection` +- **Class members**: `_privateField`, `publicMethod` +- **Top-level functions**: `buildWidget`, `validateInput` +- **Constants**: `defaultPadding`, `maxRetries`, `pi` (prefer over SCREAMING_CAPS) + +#### lowercase_with_underscores +- **Packages**: `my_package`, `http_client` +- **Directories**: `lib/widgets/custom`, `test/unit_tests` +- **Source files**: `user_profile_widget.dart`, `file_system.dart` +- **Import prefixes**: `import 'dart:math' as math;`, `import 'package:foo/foo.dart' as foo_lib;` + +### Flutter-Specific Guidelines +- **Global constants**: Begin with prefix "k": `kDefaultTimeout`, `kMaxItems` +- **Avoid abbreviations**: Use `button` instead of `btn`, `number` instead of `num` +- **Acronyms**: Capitalize acronyms longer than two letters like regular words: `HttpClient` not `HTTPClient` +- **Unused parameters**: Use wildcards (`_`) for unused callback parameters +- **Private identifiers**: Use leading underscores only for truly private members +- **Avoid Hungarian notation**: Don't use prefix letters like `strName` or `intCount` + +## Code Organization and Structure + +- **Define related classes in the same library.** +- **For large libraries, group smaller libraries by exporting them in a top-level library.** +- **Group related libraries in the same folder.** + +### Import Ordering (Strict Dart Convention) +```dart +// 1. Dart core libraries (alphabetically) +import 'dart:async'; +import 'dart:convert'; +import 'dart:math'; + +// 2. Flutter and package imports (alphabetically) +import 'package:flutter/material.dart'; +import 'package:http/http.dart' as http; +import 'package:provider/provider.dart'; + +// 3. Relative imports (alphabetically) +import '../models/user.dart'; +import '../widgets/custom_button.dart'; +import 'user_repository.dart'; + +// 4. Exports (if any, in separate section) +export 'src/my_library.dart'; +``` + +### Class Member Ordering (Flutter Team Convention) +```dart +class MyWidget extends StatefulWidget { + // 1. Constructors first + const MyWidget({ + super.key, + required this.title, + this.isEnabled = true, + }); + + // 2. Public constants + static const double kDefaultHeight = 48.0; + + // 3. Public fields + final String title; + final bool isEnabled; + + // 4. Private constants + static const double _defaultPadding = 16.0; + + // 5. Private fields + String? _cachedValue; + + // 6. Getters and setters + bool get isDisabled => !isEnabled; + + // 7. Public methods + @override + State createState() => _MyWidgetState(); + + // 8. Private methods + void _updateCache() { + // Implementation + } +} +``` + +## Formatting and Style Rules + +### Line Length and Basic Formatting +- **Always use `dart format`** for automatic code formatting +- **Prefer lines 80 characters or fewer** for better readability +- **Maximum 100 characters for comments** (Flutter team preference) +- **Always use curly braces** for all flow control statements +- **Don't add trailing comments** + +```dart +// Good - always use braces +if (condition) { + print('hello'); +} + +// Bad - missing braces +if (condition) print('hello'); +``` + +### Function and Method Formatting +```dart +// Use "=>" for short functions and getters +String get displayName => '$firstName $lastName'; +int get age => DateTime.now().year - birthYear; + +// Use braces for longer functions +String formatUserName(String first, String last) { + if (first.isEmpty && last.isEmpty) { + return 'Anonymous'; + } + return '$first $last'.trim(); +} +``` + +### Dart-Specific Formatting Rules +- **Prefer `+=` over `++`** for increment operations: `counter += 1;` +- **Use collection literals** when possible: `[]` instead of `List()` +- **Adjacent string literals** for concatenation: +```dart +var longMessage = 'This is a very long message ' + 'that spans multiple lines.'; +``` + +## Type Annotations and Safety + +### Type Annotations (Required by Flutter Team) +```dart +// DO annotate return types on function declarations +String formatName(String first, String last) { + return '$first $last'; +} + +// DO annotate parameter types on function declarations +void updateUser(String id, Map data) { + // Implementation +} + +// DO use explicit types for variables (avoid var/dynamic) +final List users = []; +final Map scores = {}; +``` + +### Null Safety Best Practices +```dart +// DON'T explicitly initialize variables to null +String? name; // Good +String? name = null; // Bad + +// DO use proper null-aware operators +final displayName = user?.name ?? 'Unknown'; + +// DO use late for non-nullable fields initialized later +class MyWidget extends StatefulWidget { + late final AnimationController controller; +} +``` + +### Future and Async Types +```dart +// DO use Future for async functions that don't return values +Future saveUser(User user) async { + await repository.save(user); +} + +// DO prefer async/await over raw futures +Future> loadUsers() async { + final response = await http.get('/api/users'); + return parseUsers(response.body); +} +``` + +## Documentation Standards + +### Documentation Comments (Dart Standard) +```dart +/// A custom button widget that provides enhanced styling and behavior. +/// +/// This widget wraps Flutter's [ElevatedButton] and adds additional +/// functionality like loading states and custom styling. +/// +/// The [onPressed] callback is called when the button is tapped. +/// Set [isEnabled] to false to disable the button. +/// +/// Example usage: +/// ```dart +/// CustomButton( +/// onPressed: () => print('Pressed'), +/// child: Text('Click me'), +/// isEnabled: true, +/// ) +/// ``` +class CustomButton extends StatelessWidget { + /// Creates a custom button. + /// + /// The [onPressed] and [child] parameters are required. + /// The [isEnabled] parameter defaults to true. + const CustomButton({ + super.key, + required this.onPressed, + required this.child, + this.isEnabled = true, + }); + + /// Called when the button is pressed. + final VoidCallback? onPressed; + + /// The widget to display inside the button. + final Widget child; + + /// Whether the button is enabled for interaction. + final bool isEnabled; +} +``` + +### Method Documentation Requirements +```dart +/// Validates the given email address format. +/// +/// Returns `true` if the [email] is valid according to RFC standards. +/// Returns `false` if the format is invalid. +/// +/// Throws [ArgumentError] if [email] is null or empty. +/// +/// Example: +/// ```dart +/// final isValid = validateEmail('user@example.com'); // true +/// ``` +bool validateEmail(String email) { + if (email.isEmpty) { + throw ArgumentError('Email cannot be empty'); + } + return RegExp(r'^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$').hasMatch(email); +} +``` + +## Flutter-Specific Patterns + +- **Prefer composition over inheritance.** +- **Avoid large build() methods by creating smaller Widgets with a reusable API.** +- **Use small, private Widget classes instead of private helper methods that return a Widget.** +- **Use lazy lists wherever possible using ListView.builder.** + +### Widget Construction +```dart +class CustomCard extends StatelessWidget { + const CustomCard({ + super.key, + required this.title, + required this.content, + this.elevation = 2.0, + this.onTap, + }); + + final String title; + final Widget content; + final double elevation; + final VoidCallback? onTap; + + @override + Widget build(BuildContext context) { + return Card( + elevation: elevation, + child: InkWell( + onTap: onTap, + child: Padding( + padding: const EdgeInsets.all(16.0), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + title, + style: Theme.of(context).textTheme.titleLarge, + ), + const SizedBox(height: 8.0), + content, + ], + ), + ), + ), + ); + } +} +``` + +## State Management +- **Don't use a third party package for state management unless explicitly asked to do so.** +- **Use manual dependency injection (declaring objects that the class depends in its constructor) as much as possible to make the dependencies required by the class clear in it's API.** +- **If asked to use Provider, use it for app-level objects that are used often.** +- **Use Model-View-ViewModel for application architecture.** +- **Use ChangeNotifier or a class with ValueNotifiers for ViewModel classes.** +- **Use a ListenableBuilder to listen to changes to the ViewModel.** +- **Use a StatefulWidget for widgets that are reusable or single-purpose, and don't necessarily require a MVVM architecture.** + +## Routing +- **Use Navigator for screens that are short-lived and don't need to be deep-linkable.** + +## Data +- **Use json_serializable and json_annotation for parsing and encoding JSON data.** +- **Use fieldRename: FieldRename.snake to encode data with snake case.** + +## Code Generation +- **Use build_runner for any generated code in the app.** + +## String and Collection Best Practices + +### String Interpolation and Formatting +```dart +// PREFER using interpolation to compose strings +final name = 'John Doe'; +final age = 25; +final message = 'Hello, $name! You are $age years old.'; +final calculation = 'Next year you will be ${age + 1}.'; + +// DO use adjacent strings for long literals +const longText = 'This is a very long text that ' + 'spans multiple lines for better ' + 'readability in the source code.'; +``` + +### Collection Usage +```dart +// DO use collection literals +final List names = []; +final Map scores = {}; +final Set uniqueIds = {}; + +// DON'T use .length to check if empty +if (names.isEmpty) { // Good + print('No names'); +} + +if (names.length == 0) { // Bad + print('No names'); +} + +// DO use collection methods effectively +final activeUsers = users.where((user) => user.isActive).toList(); +final userNames = users.map((user) => user.name).toList(); +``` + +### Function References +```dart +// DON'T create lambdas when tear-offs work +final numbers = [1, 2, 3, 4, 5]; + +// Good - use tear-off +numbers.forEach(print); + +// Bad - unnecessary lambda +numbers.forEach((number) { + print(number); +}); +``` + +## Error Handling and Exceptions + +### Meaningful Error Messages (Flutter Team Priority) +```dart +// Good: Specific and actionable +throw ArgumentError('Email must contain @ symbol'); +throw StateError('Cannot call increment() after dispose()'); + +// Bad: Vague and unhelpful +throw ArgumentError('Invalid input'); +throw Exception('Error occurred'); +``` + +### Exception Handling Patterns +```dart +Future fetchUser(String id) async { + try { + final response = await api.getUser(id); + return User.fromJson(response.data); + } on NetworkException catch (e) { + throw UserFetchException('Failed to fetch user: ${e.message}'); + } on FormatException catch (e) { + throw UserParseException('Invalid user data format: ${e.message}'); + } catch (e) { + throw UserFetchException('Unexpected error: ${e.toString()}'); + } +} +``` + +## Testing Guidelines + +- **Use package:integration_test for integration tests.** +- **Use package:checks instead of matchers from package:test or package:matcher.** + +### Widget Testing +```dart +testWidgets('CustomButton should call onPressed when tapped', (tester) async { + bool wasPressed = false; + + await tester.pumpWidget( + MaterialApp( + home: Scaffold( + body: CustomButton( + onPressed: () => wasPressed = true, + child: const Text('Test Button'), + ), + ), + ), + ); + + await tester.tap(find.byType(CustomButton)); + await tester.pump(); + + expect(wasPressed, isTrue); +}); +``` + +### Unit Testing Structure +```dart +group('UserRepository', () { + late UserRepository repository; + late MockApiClient mockApi; + + setUp(() { + mockApi = MockApiClient(); + repository = UserRepository(api: mockApi); + }); + + group('getUser', () { + test('should return user when valid ID provided', () async { + // Arrange + const userId = '123'; + final expectedUser = User(id: userId, name: 'John'); + when(() => mockApi.getUser(userId)) + .thenAnswer((_) async => expectedUser.toJson()); + + // Act + final user = await repository.getUser(userId); + + // Assert + expect(user.id, equals(userId)); + expect(user.name, equals('John')); + }); + + test('should throw exception when user not found', () async { + // Arrange + const userId = 'invalid'; + when(() => mockApi.getUser(userId)) + .thenThrow(NotFoundException()); + + // Act & Assert + expect( + () => repository.getUser(userId), + throwsA(isA()), + ); + }); + }); +}); +``` + +## Advanced Dart Patterns + +- **Use Patterns and pattern-matching features where possible.** + +### Immutability and Data Classes +```dart +class User { + const User({ + required this.id, + required this.name, + required this.email, + this.isActive = true, + }); + + final String id; + final String name; + final String email; + final bool isActive; + + // Use copyWith for immutable updates + User copyWith({ + String? id, + String? name, + String? email, + bool? isActive, + }) { + return User( + id: id ?? this.id, + name: name ?? this.name, + email: email ?? this.email, + isActive: isActive ?? this.isActive, + ); + } + + // Override equality + @override + bool operator ==(Object other) => + other is User && + runtimeType == other.runtimeType && + id == other.id; + + @override + int get hashCode => id.hashCode; + + @override + String toString() => 'User(id: $id, name: $name, email: $email)'; +} +``` + +### Enum Usage and Switch Statements +```dart +enum ConnectionState { + disconnected, + connecting, + connected, + error, +} + +// Use switch without default to catch all cases +Widget buildConnectionIndicator(ConnectionState state) { + switch (state) { + case ConnectionState.disconnected: + return const Icon(Icons.wifi_off, color: Colors.grey); + case ConnectionState.connecting: + return const CircularProgressIndicator(); + case ConnectionState.connected: + return const Icon(Icons.wifi, color: Colors.green); + case ConnectionState.error: + return const Icon(Icons.error, color: Colors.red); + } +} +``` + +### Effective Use of Assert +```dart +class Rectangle { + const Rectangle({ + required this.width, + required this.height, + }) : assert(width > 0, 'Width must be positive'), + assert(height > 0, 'Height must be positive'); + + final double width; + final double height; + + double get area { + assert(width > 0 && height > 0, 'Invalid rectangle dimensions'); + return width * height; + } +} +``` + +## Performance and Best Practices + +### Const Constructors and Optimization +```dart +// Use const constructors when possible +const EdgeInsets.all(16.0); +const SizedBox(height: 8.0); + +// Create const widgets for better performance +class LoadingIndicator extends StatelessWidget { + const LoadingIndicator({super.key}); + + @override + Widget build(BuildContext context) { + return const Center( + child: CircularProgressIndicator(), + ); + } +} +``` + +### Efficient Widget Building +```dart +class ProductList extends StatelessWidget { + const ProductList({ + super.key, + required this.products, + }); + + final List products; + + @override + Widget build(BuildContext context) { + // Don't do heavy computation in build method + return ListView.builder( + itemCount: products.length, + itemBuilder: (context, index) { + final product = products[index]; + return ProductTile( + key: ValueKey(product.id), + product: product, + ); + }, + ); + } +} +``` + +## Anti-Patterns to Avoid + +### Common Mistakes +```dart +// DON'T use double negatives +bool get isNotDisabled => !disabled; // Confusing + +// DO use positive naming +bool get isEnabled => !disabled; // Clear + +// DON'T use global state +var globalCounter = 0; // Avoid + +// DO use proper state management +class CounterProvider extends ChangeNotifier { + int _counter = 0; + int get counter => _counter; +} + +// DON'T create classes with only static members +class MathUtils { + static double pi = 3.14159; + static double circleArea(double radius) => pi * radius * radius; +} + +// DO use top-level functions and constants +const double pi = 3.14159; +double circleArea(double radius) => pi * radius * radius; + +// DON'T avoid using APIs as intended +class TimeSlot { + TimeSlot(this.start, this.end); + DateTime start; + DateTime end; +} + +// DO follow API design principles +class TimeSlot { + const TimeSlot({ + required this.start, + required this.end, + }) : assert(start.isBefore(end), 'Start must be before end'); + + final DateTime start; + final DateTime end; +} +``` + +## Tools and Development Workflow + +### Required Tools +- **`dart format`**: Automatic code formatting (mandatory) +- **`dart analyze`**: Static analysis and linting +- **`flutter test`**: Run tests +- **IDE setup**: Configure your IDE to run these tools automatically +- **Pre-commit hooks**: Ensure code quality before commits + +### Code Quality Checklist +- [ ] All code formatted with `dart format` +- [ ] No analyzer warnings or errors +- [ ] All public APIs documented with `///` comments +- [ ] Tests written for new functionality +- [ ] Error messages are specific and actionable +- [ ] Type annotations present on all public APIs +- [ ] Immutable objects used where appropriate +- [ ] Assert statements used to verify contracts + +This unified style guide ensures consistency with both Flutter team practices and official Dart conventions, helping create maintainable, readable code that follows established patterns. \ No newline at end of file diff --git a/.prompts/release.md b/.prompts/release.md new file mode 100644 index 00000000000..9c46e5dd5df --- /dev/null +++ b/.prompts/release.md @@ -0,0 +1,93 @@ +You are an AI developer specializing in Dart and Flutter. Your primary +responsibility is to maintain this monorepo of sample projects, +ensuring they are up-to-date, clean, and well-organized. + +This workflow is triggered when a new Flutter/Dart version is +released. Follow these steps precisely: + +1. Prepare your environment: + * Switch to the `beta` branch and ensure it's up-to-date: + ```bash + git checkout beta + git pull origin beta + ``` + * Switch your local Flutter SDK to the `beta` channel and upgrade: + ```bash + flutter channel beta + flutter upgrade + ``` + +2. Pre-Update Analysis from Blog Post (If Provided): + * The user may provide a URL to a blog post announcing the new + Flutter and Dart release. + * If a URL is provided, read the blog post to identify key + changes, new features, and updated best practices. + * Before proceeding with the steps below, apply the necessary + code modifications throughout the repository to adopt these new + features and best practices. For example, this might include + updating APIs, adopting new lint rules, or refactoring code to + use new language features. + +3. Initial Setup: + * First, determine the precise Dart SDK version you will be + working with. Execute the command `flutter --version --machine`. + * Parse the JSON output to find the value of dartSdkVersion. You + will need the version number (e.g., 3.9.0). Let's call this + DART_VERSION. + * Next, read the pubspec.yaml file at the root of the monorepo. + * Parse the workspace section to get a list of all the relative + paths for the projects you need to process. + +4. Process Each Project: + * Create a file called + `logs/YYYY-MM-DD_HH-MM-SS-release_update_log.txt`, but replace + YYYY-MM-DD_HH-MM-SS with the current date/time. + * Iterate through each project path you discovered in the + workspace. + * For each project, perform the following actions in its + directory. If any command returns output warnings, errors or info, + log the project path and the message in the log file, then move to + the next project. + +5. Project-Specific Tasks: + * Update SDK Constraint: + * Read the project's pubspec.yaml file. + * Find the environment.sdk key. + * Update its value to ^DART_VERSION-0 (e.g., ^3.9.0-0). + * Save the modified pubspec.yaml file. + * Run Quality Checks: + * Run dart analyze --fatal-infos --fatal-warnings. + * Run dart format . to ensure the code is correctly formatted. + * Run Tests: + * Check if a test directory exists in the project. + * Exception: Do not run tests for the project named + material_3_demo. + * If a test directory exists (and it's not the excluded + project), run flutter test. + +6. Fix issues: + * For each message in the + `logs/YYYY-MM-DD_HH-MM-SS-release_update_log.txt` file, attempt + to fix the problem. After 30 seconds of being unable to fix it, + move onto the next issue. + * If you fix the issue successfully, remove the message from the + log file. + * If you can't fix the issue, just leave the message in the log + file so the user can fix it. + +7. Final Report: + * After processing all projects, generate a summary report. + * The report must include: + * The total number of projects processed. + * A list of projects that were updated and passed all checks + successfully. + * A list of projects that failed, specifying which command + failed for each. + +8. Create Pull Request: + * After generating the report, create a pull request. + * Use the `gh` CLI tool for this purpose. + * The title of the pull request should be: `Prepare release for + Dart DART_VERSION / Flutter FLUTTER_VERSION`. + * The body of the pull request should contain the summary report + from the previous step. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 7d8e5b733d8..00000000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,32 +0,0 @@ -# Changelog - -The purpose of this changelog is to track the freshness of samples and which -samples reflect *current best practices*. It describes **human-made, significant -** changes made to the repository or samples in the repository. - -While all samples in this repository build and run, some of them were written -long ago, and no longer reflect what we want developers to learn. For example, -samples should have been refactored when Dart 3 released to include patterns and -records, where appropriate. - -* **DO include:** - * The addition of new samples. - * The removal of existing samples. - * Considerable refactoring of any given sample. - -* **DO NOT include:** - * Simple changes that reflect minor version bumps in Flutter. For example, - in a recent Flutter update, `Color.red` became `Color.r`. - * Dependency updates. - * Bug fixes. - * Any changes made to simply 'keep the lights on'. - -# Log - -| DATE (YYYY-MM-DD) | Sample(s) | author | Changes | -|-------------------|-------------------|--------------|-----------------------------------------------| -| NEXT GOES HERE | | | | -| | | | | -| 2024-12-04 | N/A - repo change | ericwindmill | Added changelog | -| 2024-11-27 | fake_sample | ericwindmill | Refactored fake_sample to use Dart 3 features | -| 2020-04-17 | fake_sample | ericwindmill | Created fake_sample | diff --git a/README.md b/README.md index 7dc15a9e40c..181d9e3fecd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A collection of open source samples that illustrate best practices for ## Contributing -We're very appreciative of fixes and necessary improvements to the existing samples. **But in most cases, we're not currently adding new samples to this repository** while we rethink sample code in the post-LLM world. +We appreciate fixes and necessary improvements to existing samples. **But in most cases, we're not currently adding new samples to this repository** while we rethink sample code in the new LLM world. Please read the [contributor's guide] if you have contributions. diff --git a/add_to_app/android_view/flutter_module_using_plugin/.gitignore b/add_to_app/android_view/flutter_module_using_plugin_android_view/.gitignore similarity index 100% rename from add_to_app/android_view/flutter_module_using_plugin/.gitignore rename to add_to_app/android_view/flutter_module_using_plugin_android_view/.gitignore diff --git a/add_to_app/android_view/flutter_module_using_plugin/.metadata b/add_to_app/android_view/flutter_module_using_plugin_android_view/.metadata similarity index 100% rename from add_to_app/android_view/flutter_module_using_plugin/.metadata rename to add_to_app/android_view/flutter_module_using_plugin_android_view/.metadata diff --git a/add_to_app/android_view/flutter_module_using_plugin/README.md b/add_to_app/android_view/flutter_module_using_plugin_android_view/README.md similarity index 100% rename from add_to_app/android_view/flutter_module_using_plugin/README.md rename to add_to_app/android_view/flutter_module_using_plugin_android_view/README.md diff --git a/add_to_app/android_view/flutter_module_using_plugin/analysis_options.yaml b/add_to_app/android_view/flutter_module_using_plugin_android_view/analysis_options.yaml similarity index 100% rename from add_to_app/android_view/flutter_module_using_plugin/analysis_options.yaml rename to add_to_app/android_view/flutter_module_using_plugin_android_view/analysis_options.yaml diff --git a/add_to_app/android_view/flutter_module_using_plugin/lib/cell.dart b/add_to_app/android_view/flutter_module_using_plugin_android_view/lib/cell.dart similarity index 83% rename from add_to_app/android_view/flutter_module_using_plugin/lib/cell.dart rename to add_to_app/android_view/flutter_module_using_plugin_android_view/lib/cell.dart index 13eb9007526..a799a5f75d7 100644 --- a/add_to_app/android_view/flutter_module_using_plugin/lib/cell.dart +++ b/add_to_app/android_view/flutter_module_using_plugin_android_view/lib/cell.dart @@ -23,7 +23,12 @@ class Cell extends StatefulWidget { class _CellState extends State with WidgetsBindingObserver { static const double gravity = 9.81; - static final AccelerometerEvent defaultPosition = AccelerometerEvent(0, 0, 0); + static final AccelerometerEvent defaultPosition = AccelerometerEvent( + 0, + 0, + 0, + DateTime.now(), + ); int cellNumber = 0; Random? _random; @@ -82,7 +87,10 @@ class _CellState extends State with WidgetsBindingObserver { builder: (context) { return Card( // Mimic the platform Material look. - margin: const EdgeInsets.symmetric(horizontal: 36, vertical: 24), + margin: const EdgeInsets.symmetric( + horizontal: 36, + vertical: 24, + ), shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(16), ), @@ -112,22 +120,22 @@ class _CellState extends State with WidgetsBindingObserver { child: StreamBuilder( // Don't continuously rebuild for nothing when the // cell isn't visible. - stream: - appLifecycleState == AppLifecycleState.resumed - ? accelerometerEventStream() - : Stream.value(defaultPosition), + stream: appLifecycleState == AppLifecycleState.resumed + ? accelerometerEventStream() + : Stream.value(defaultPosition), initialData: defaultPosition, builder: (context, snapshot) { return Transform( // Figure out the phone's orientation relative // to gravity's direction. Ignore the z vector. - transform: Matrix4.rotationX( - snapshot.data!.y / gravity * pi / 2, - )..multiply( - Matrix4.rotationY( - snapshot.data!.x / gravity * pi / 2, - ), - ), + transform: + Matrix4.rotationX( + snapshot.data!.y / gravity * pi / 2, + )..multiply( + Matrix4.rotationY( + snapshot.data!.x / gravity * pi / 2, + ), + ), alignment: Alignment.center, child: const FlutterLogo(size: 72), ); diff --git a/add_to_app/android_view/flutter_module_using_plugin/lib/main.dart b/add_to_app/android_view/flutter_module_using_plugin_android_view/lib/main.dart similarity index 100% rename from add_to_app/android_view/flutter_module_using_plugin/lib/main.dart rename to add_to_app/android_view/flutter_module_using_plugin_android_view/lib/main.dart diff --git a/add_to_app/android_view/flutter_module_using_plugin/pubspec.yaml b/add_to_app/android_view/flutter_module_using_plugin_android_view/pubspec.yaml similarity index 85% rename from add_to_app/android_view/flutter_module_using_plugin/pubspec.yaml rename to add_to_app/android_view/flutter_module_using_plugin_android_view/pubspec.yaml index 645caccafb8..4f6067a9287 100644 --- a/add_to_app/android_view/flutter_module_using_plugin/pubspec.yaml +++ b/add_to_app/android_view/flutter_module_using_plugin_android_view/pubspec.yaml @@ -1,17 +1,17 @@ -name: flutter_module_using_plugin +name: flutter_module_using_plugin_android_view description: An example Flutter module that uses a plugin. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.8.1-0 dependencies: flutter: sdk: flutter - provider: ^6.0.2 - url_launcher: ^6.0.20 - sensors_plus: ^5.0.1 + provider: ^6.1.5 + url_launcher: ^6.3.2 + sensors_plus: ^6.1.1 dev_dependencies: analysis_defaults: diff --git a/add_to_app/android_view/flutter_module_using_plugin/test/widget_test.dart b/add_to_app/android_view/flutter_module_using_plugin_android_view/test/widget_test.dart similarity index 95% rename from add_to_app/android_view/flutter_module_using_plugin/test/widget_test.dart rename to add_to_app/android_view/flutter_module_using_plugin_android_view/test/widget_test.dart index 72807e9b740..f6cdf39aad1 100644 --- a/add_to_app/android_view/flutter_module_using_plugin/test/widget_test.dart +++ b/add_to_app/android_view/flutter_module_using_plugin_android_view/test/widget_test.dart @@ -6,7 +6,7 @@ // tree, read text, and verify that the values of widget properties are correct. import 'package:flutter/material.dart'; -import 'package:flutter_module_using_plugin/main.dart'; +import 'package:flutter_module_using_plugin_android_view/main.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:provider/provider.dart'; diff --git a/add_to_app/books/flutter_module_books/lib/main.dart b/add_to_app/books/flutter_module_books/lib/main.dart index dfa0c8729ce..3ef7fa7b5ac 100644 --- a/add_to_app/books/flutter_module_books/lib/main.dart +++ b/add_to_app/books/flutter_module_books/lib/main.dart @@ -125,28 +125,26 @@ class _BookDetailState extends State { IconButton( icon: const Icon(Icons.check), // Pressing save sends the updated book to the platform. - onPressed: - book != null - ? () { - hostApi.finishEditingBook(book!); - clear(); - } - : null, + onPressed: book != null + ? () { + hostApi.finishEditingBook(book!); + clear(); + } + : null, ), ], ), - body: - book == null - // Draw a spinner until the platform gives us the book to show details - // for. - ? const Center(child: CircularProgressIndicator()) - : BookForm( - book: book!, - focusNode: textFocusNode, - authorTextController: authorTextController, - subtitleTextController: subtitleTextController, - titleTextController: titleTextController, - ), + body: book == null + // Draw a spinner until the platform gives us the book to show details + // for. + ? const Center(child: CircularProgressIndicator()) + : BookForm( + book: book!, + focusNode: textFocusNode, + authorTextController: authorTextController, + subtitleTextController: subtitleTextController, + titleTextController: titleTextController, + ), ); } } diff --git a/add_to_app/books/flutter_module_books/pubspec.yaml b/add_to_app/books/flutter_module_books/pubspec.yaml index a04ec8a546b..01d44f08ab5 100644 --- a/add_to_app/books/flutter_module_books/pubspec.yaml +++ b/add_to_app/books/flutter_module_books/pubspec.yaml @@ -2,11 +2,11 @@ name: flutter_module_books description: A Flutter module using the Pigeon package to demonstrate integrating Flutter in a realistic scenario where the existing platform app already has business logic and middleware constraints. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: diff --git a/add_to_app/books/flutter_module_books/test/widget_test.dart b/add_to_app/books/flutter_module_books/test/widget_test.dart index 11b8d3c1fac..6de9cb07fcb 100644 --- a/add_to_app/books/flutter_module_books/test/widget_test.dart +++ b/add_to_app/books/flutter_module_books/test/widget_test.dart @@ -20,11 +20,15 @@ void main() { expect(mockHostApi.cancelCalls, 1); }); - testWidgets('Pressing done calls the finish editing API', (tester) async { + testWidgets('Pressing done calls the finish editing API', ( + tester, + ) async { MockHostBookApi mockHostApi = MockHostBookApi(); await tester.pumpWidget( - MaterialApp(home: BookDetail(book: Book(), hostApi: mockHostApi)), + MaterialApp( + home: BookDetail(book: Book(), hostApi: mockHostApi), + ), ); await tester.tap(find.byIcon(Icons.check)); diff --git a/add_to_app/fullscreen/flutter_module/.gitignore b/add_to_app/fullscreen/flutter_module_fullscreen/.gitignore similarity index 100% rename from add_to_app/fullscreen/flutter_module/.gitignore rename to add_to_app/fullscreen/flutter_module_fullscreen/.gitignore diff --git a/add_to_app/fullscreen/flutter_module/.metadata b/add_to_app/fullscreen/flutter_module_fullscreen/.metadata similarity index 100% rename from add_to_app/fullscreen/flutter_module/.metadata rename to add_to_app/fullscreen/flutter_module_fullscreen/.metadata diff --git a/add_to_app/fullscreen/flutter_module/README.md b/add_to_app/fullscreen/flutter_module_fullscreen/README.md similarity index 100% rename from add_to_app/fullscreen/flutter_module/README.md rename to add_to_app/fullscreen/flutter_module_fullscreen/README.md diff --git a/add_to_app/fullscreen/flutter_module/analysis_options.yaml b/add_to_app/fullscreen/flutter_module_fullscreen/analysis_options.yaml similarity index 100% rename from add_to_app/fullscreen/flutter_module/analysis_options.yaml rename to add_to_app/fullscreen/flutter_module_fullscreen/analysis_options.yaml diff --git a/add_to_app/fullscreen/flutter_module/lib/main.dart b/add_to_app/fullscreen/flutter_module_fullscreen/lib/main.dart similarity index 100% rename from add_to_app/fullscreen/flutter_module/lib/main.dart rename to add_to_app/fullscreen/flutter_module_fullscreen/lib/main.dart diff --git a/add_to_app/fullscreen/flutter_module/pubspec.yaml b/add_to_app/fullscreen/flutter_module_fullscreen/pubspec.yaml similarity index 93% rename from add_to_app/fullscreen/flutter_module/pubspec.yaml rename to add_to_app/fullscreen/flutter_module_fullscreen/pubspec.yaml index 2c00a2cb1ae..9fca79121e5 100644 --- a/add_to_app/fullscreen/flutter_module/pubspec.yaml +++ b/add_to_app/fullscreen/flutter_module_fullscreen/pubspec.yaml @@ -1,10 +1,10 @@ -name: flutter_module +name: flutter_module_fullscreen description: An example Flutter module. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: diff --git a/add_to_app/fullscreen/flutter_module/test/widget_test.dart b/add_to_app/fullscreen/flutter_module_fullscreen/test/widget_test.dart similarity index 95% rename from add_to_app/fullscreen/flutter_module/test/widget_test.dart rename to add_to_app/fullscreen/flutter_module_fullscreen/test/widget_test.dart index e16884a88bb..af8421e5b83 100644 --- a/add_to_app/fullscreen/flutter_module/test/widget_test.dart +++ b/add_to_app/fullscreen/flutter_module_fullscreen/test/widget_test.dart @@ -3,7 +3,7 @@ // found in the LICENSE file. import 'package:flutter/material.dart'; -import 'package:flutter_module/main.dart'; +import 'package:flutter_module_fullscreen/main.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:provider/provider.dart'; diff --git a/add_to_app/fullscreen/flutter_module/test_driver/example.dart b/add_to_app/fullscreen/flutter_module_fullscreen/test_driver/example.dart similarity index 86% rename from add_to_app/fullscreen/flutter_module/test_driver/example.dart rename to add_to_app/fullscreen/flutter_module_fullscreen/test_driver/example.dart index 5f1e453151a..3d85ace7363 100644 --- a/add_to_app/fullscreen/flutter_module/test_driver/example.dart +++ b/add_to_app/fullscreen/flutter_module_fullscreen/test_driver/example.dart @@ -3,7 +3,7 @@ // found in the LICENSE file. import 'package:flutter_driver/driver_extension.dart'; -import 'package:flutter_module/main.dart' as app; +import 'package:flutter_module_fullscreen/main.dart' as app; // This alternate entrypoint is used for espresso testing. See // https://pub.dev/packages/espresso for details. diff --git a/add_to_app/multiple_flutters/multiple_flutters_module/lib/main.dart b/add_to_app/multiple_flutters/multiple_flutters_module/lib/main.dart index 07fd235f1d5..7464360d0e9 100644 --- a/add_to_app/multiple_flutters/multiple_flutters_module/lib/main.dart +++ b/add_to_app/multiple_flutters/multiple_flutters_module/lib/main.dart @@ -82,7 +82,10 @@ class _MyHomePageState extends State { '$_counter', style: Theme.of(context).textTheme.headlineMedium, ), - TextButton(onPressed: _incrementCounter, child: const Text('Add')), + TextButton( + onPressed: _incrementCounter, + child: const Text('Add'), + ), TextButton( onPressed: () { _channel.invokeMethod("next", _counter); diff --git a/add_to_app/multiple_flutters/multiple_flutters_module/pubspec.yaml b/add_to_app/multiple_flutters/multiple_flutters_module/pubspec.yaml index baa095646c0..0b7755f935d 100644 --- a/add_to_app/multiple_flutters/multiple_flutters_module/pubspec.yaml +++ b/add_to_app/multiple_flutters/multiple_flutters_module/pubspec.yaml @@ -1,10 +1,10 @@ name: multiple_flutters_module description: A module that is embedded in the multiple_flutters_ios and multiple_flutters_android sample code. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: diff --git a/add_to_app/plugin/flutter_module_using_plugin/lib/cell.dart b/add_to_app/plugin/flutter_module_using_plugin/lib/cell.dart index b1fe42aff4b..dbef5a1dc27 100644 --- a/add_to_app/plugin/flutter_module_using_plugin/lib/cell.dart +++ b/add_to_app/plugin/flutter_module_using_plugin/lib/cell.dart @@ -23,7 +23,12 @@ class Cell extends StatefulWidget { class _CellState extends State with WidgetsBindingObserver { static const double gravity = 9.81; - static final AccelerometerEvent defaultPosition = AccelerometerEvent(0, 0, 0); + static final AccelerometerEvent defaultPosition = AccelerometerEvent( + 0, + 0, + 0, + DateTime.now(), + ); int cellNumber = 0; Random? _random; @@ -82,7 +87,10 @@ class _CellState extends State with WidgetsBindingObserver { builder: (context) { return Card( // Mimic the platform Material look. - margin: const EdgeInsets.symmetric(horizontal: 36, vertical: 24), + margin: const EdgeInsets.symmetric( + horizontal: 36, + vertical: 24, + ), shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(16), ), @@ -112,10 +120,9 @@ class _CellState extends State with WidgetsBindingObserver { child: StreamBuilder( // Don't continuously rebuild for nothing when the // cell isn't visible. - stream: - appLifecycleState == AppLifecycleState.resumed - ? accelerometerEventStream() - : Stream.value(defaultPosition), + stream: appLifecycleState == AppLifecycleState.resumed + ? accelerometerEventStream() + : Stream.value(defaultPosition), initialData: defaultPosition, builder: (context, snapshot) { final data = snapshot.data; @@ -125,11 +132,14 @@ class _CellState extends State with WidgetsBindingObserver { return Transform( // Figure out the phone's orientation relative // to gravity's direction. Ignore the z vector. - transform: Matrix4.rotationX( - data.y / gravity * pi / 2, - )..multiply( - Matrix4.rotationY(data.x / gravity * pi / 2), - ), + transform: + Matrix4.rotationX( + data.y / gravity * pi / 2, + )..multiply( + Matrix4.rotationY( + data.x / gravity * pi / 2, + ), + ), alignment: Alignment.center, child: const FlutterLogo(size: 72), ); diff --git a/add_to_app/plugin/flutter_module_using_plugin/pubspec.yaml b/add_to_app/plugin/flutter_module_using_plugin/pubspec.yaml index 645caccafb8..db1e2d84e8f 100644 --- a/add_to_app/plugin/flutter_module_using_plugin/pubspec.yaml +++ b/add_to_app/plugin/flutter_module_using_plugin/pubspec.yaml @@ -1,17 +1,17 @@ name: flutter_module_using_plugin description: An example Flutter module that uses a plugin. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter provider: ^6.0.2 url_launcher: ^6.0.20 - sensors_plus: ^5.0.1 + sensors_plus: ^6.1.1 dev_dependencies: analysis_defaults: diff --git a/add_to_app/prebuilt_module/flutter_module/pubspec.yaml b/add_to_app/prebuilt_module/flutter_module/pubspec.yaml index 2c00a2cb1ae..773d4c49f52 100644 --- a/add_to_app/prebuilt_module/flutter_module/pubspec.yaml +++ b/add_to_app/prebuilt_module/flutter_module/pubspec.yaml @@ -1,10 +1,10 @@ name: flutter_module description: An example Flutter module. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: diff --git a/analysis_defaults/.gitignore b/analysis_defaults/.gitignore index 3a857904084..f48998bed65 100644 --- a/analysis_defaults/.gitignore +++ b/analysis_defaults/.gitignore @@ -1,3 +1,4 @@ # https://dart.dev/guides/libraries/private-files # Created by `dart pub` .dart_tool/ +.build/ diff --git a/analysis_defaults/lib/flutter.yaml b/analysis_defaults/lib/flutter.yaml index 869a3ffb10a..34ab6e19bd4 100644 --- a/analysis_defaults/lib/flutter.yaml +++ b/analysis_defaults/lib/flutter.yaml @@ -1,5 +1,9 @@ include: package:flutter_lints/flutter.yaml +formatter: + trailing_commas: preserve + page_width: 79 + analyzer: language: strict-casts: true diff --git a/analysis_defaults/pubspec.yaml b/analysis_defaults/pubspec.yaml index d6160ec4568..21a9b80ea60 100644 --- a/analysis_defaults/pubspec.yaml +++ b/analysis_defaults/pubspec.yaml @@ -1,11 +1,14 @@ name: analysis_defaults description: Analysis defaults for flutter/samples publish_to: none +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 # NOTE: Code is not allowed in this package. Do not add more dependencies. # The `flutter_lints` dependency is required for `lib/flutter.yaml`. dependencies: - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 + + diff --git a/android_splash_screen/pubspec.yaml b/android_splash_screen/pubspec.yaml index 12f2bae4c64..7c33475320b 100644 --- a/android_splash_screen/pubspec.yaml +++ b/android_splash_screen/pubspec.yaml @@ -1,23 +1,20 @@ name: splash_screen_sample description: A sample Flutter app with animated splash screen on Android 12. - publish_to: "none" - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - dev_dependencies: analysis_defaults: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true assets: diff --git a/animations/lib/main.dart b/animations/lib/main.dart index 25530594c34..fda00fdf61e 100644 --- a/animations/lib/main.dart +++ b/animations/lib/main.dart @@ -21,7 +21,8 @@ const double windowWidth = 480; const double windowHeight = 854; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Animation Samples'); setWindowMinSize(const Size(windowWidth, windowHeight)); @@ -43,7 +44,11 @@ class Demo { final String route; final WidgetBuilder builder; - const Demo({required this.name, required this.route, required this.builder}); + const Demo({ + required this.name, + required this.route, + required this.builder, + }); } final basicDemos = [ diff --git a/animations/lib/src/basics/animated_builder.dart b/animations/lib/src/basics/animated_builder.dart index a64c03bffd8..030a4057ff4 100644 --- a/animations/lib/src/basics/animated_builder.dart +++ b/animations/lib/src/basics/animated_builder.dart @@ -49,7 +49,9 @@ class _AnimatedBuilderDemoState extends State animation: animation, builder: (context, child) { return ElevatedButton( - style: ElevatedButton.styleFrom(backgroundColor: animation.value), + style: ElevatedButton.styleFrom( + backgroundColor: animation.value, + ), child: child, onPressed: () { switch (controller.status) { diff --git a/animations/lib/src/basics/fade_transition.dart b/animations/lib/src/basics/fade_transition.dart index 8496987b69f..8a808454349 100644 --- a/animations/lib/src/basics/fade_transition.dart +++ b/animations/lib/src/basics/fade_transition.dart @@ -49,18 +49,21 @@ class _FadeTransitionDemoState extends State children: [ FadeTransition( opacity: _animation, - child: const Icon(Icons.star, color: Colors.amber, size: 300), + child: const Icon( + Icons.star, + color: Colors.amber, + size: 300, + ), ), ElevatedButton( child: const Text('animate'), - onPressed: - () => setState(() { - _controller - .animateTo(1.0) - .then( - (value) => _controller.animateBack(0.0), - ); - }), + onPressed: () => setState(() { + _controller + .animateTo(1.0) + .then( + (value) => _controller.animateBack(0.0), + ); + }), ), ], ), diff --git a/animations/lib/src/basics/tween_sequence.dart b/animations/lib/src/basics/tween_sequence.dart index aaf79187ef9..05b7b586a32 100644 --- a/animations/lib/src/basics/tween_sequence.dart +++ b/animations/lib/src/basics/tween_sequence.dart @@ -74,7 +74,10 @@ class _TweenSequenceDemoState extends State child: child, ); }, - child: const Text('Animate', style: TextStyle(color: Colors.white)), + child: const Text( + 'Animate', + style: TextStyle(color: Colors.white), + ), ), ), ); diff --git a/animations/lib/src/misc/animated_list.dart b/animations/lib/src/misc/animated_list.dart index 0971959c6e2..6e774d9904c 100644 --- a/animations/lib/src/misc/animated_list.dart +++ b/animations/lib/src/misc/animated_list.dart @@ -75,7 +75,9 @@ class _AnimatedListDemoState extends State { return Scaffold( appBar: AppBar( title: const Text('AnimatedList'), - actions: [IconButton(icon: const Icon(Icons.add), onPressed: addUser)], + actions: [ + IconButton(icon: const Icon(Icons.add), onPressed: addUser), + ], ), body: SafeArea( child: AnimatedList( diff --git a/animations/lib/src/misc/animated_positioned.dart b/animations/lib/src/misc/animated_positioned.dart index 4b661147f68..cc703be054c 100644 --- a/animations/lib/src/misc/animated_positioned.dart +++ b/animations/lib/src/misc/animated_positioned.dart @@ -11,7 +11,8 @@ class AnimatedPositionedDemo extends StatefulWidget { static String routeName = 'misc/animated_positioned'; @override - State createState() => _AnimatedPositionedDemoState(); + State createState() => + _AnimatedPositionedDemoState(); } class _AnimatedPositionedDemoState extends State { @@ -54,12 +55,11 @@ class _AnimatedPositionedDemoState extends State { left: leftPosition, duration: const Duration(seconds: 1), child: InkWell( - onTap: - () => changePosition( - size.height - - (appBar.preferredSize.height + topPadding + 50), - size.width - 150, - ), + onTap: () => changePosition( + size.height - + (appBar.preferredSize.height + topPadding + 50), + size.width - 150, + ), child: Container( alignment: Alignment.center, width: 150, @@ -68,8 +68,9 @@ class _AnimatedPositionedDemoState extends State { child: Text( 'Click Me', style: TextStyle( - color: - Theme.of(context).buttonTheme.colorScheme!.onPrimary, + color: Theme.of( + context, + ).buttonTheme.colorScheme!.onPrimary, ), ), ), diff --git a/animations/lib/src/misc/animated_switcher.dart b/animations/lib/src/misc/animated_switcher.dart index 5f017efb80e..96427f8d144 100644 --- a/animations/lib/src/misc/animated_switcher.dart +++ b/animations/lib/src/misc/animated_switcher.dart @@ -48,8 +48,8 @@ class _AnimatedSwitcherDemoState extends State { title: const Text('AnimatedSwitcher'), actions: [ TextButton( - onPressed: - () => setState(() => container = generateContainer(++keyCount)), + onPressed: () => + setState(() => container = generateContainer(++keyCount)), child: const Text('Change Widget'), ), ], @@ -61,9 +61,8 @@ class _AnimatedSwitcherDemoState extends State { child: AnimatedSwitcher( duration: const Duration(seconds: 1), child: container, - transitionBuilder: - (child, animation) => - ScaleTransition(scale: animation, child: child), + transitionBuilder: (child, animation) => + ScaleTransition(scale: animation, child: child), ), ), ); diff --git a/animations/lib/src/misc/carousel.dart b/animations/lib/src/misc/carousel.dart index c2f2b2974ef..67c9c82523b 100644 --- a/animations/lib/src/misc/carousel.dart +++ b/animations/lib/src/misc/carousel.dart @@ -15,8 +15,9 @@ class CarouselDemo extends StatelessWidget { 'assets/eat_sydney_sm.jpg', ]; - final List images = - fileNames.map((file) => Image.asset(file, fit: BoxFit.cover)).toList(); + final List images = fileNames + .map((file) => Image.asset(file, fit: BoxFit.cover)) + .toList(); @override Widget build(context) { @@ -77,29 +78,32 @@ class _CarouselState extends State { }, controller: _controller, scrollBehavior: ScrollConfiguration.of(context).copyWith( - dragDevices: {ui.PointerDeviceKind.touch, ui.PointerDeviceKind.mouse}, + dragDevices: { + ui.PointerDeviceKind.touch, + ui.PointerDeviceKind.mouse, + }, + ), + itemBuilder: (context, index) => AnimatedBuilder( + animation: _controller, + builder: (context, child) { + var result = _pageHasChanged + ? _controller.page! + : _currentPage * 1.0; + + // The horizontal position of the page between a 1 and 0 + var value = result - index; + value = (1 - (value.abs() * .5)).clamp(0.0, 1.0); + + return Center( + child: SizedBox( + height: Curves.easeOut.transform(value) * size.height, + width: Curves.easeOut.transform(value) * size.width, + child: child, + ), + ); + }, + child: widget.itemBuilder(context, index), ), - itemBuilder: - (context, index) => AnimatedBuilder( - animation: _controller, - builder: (context, child) { - var result = - _pageHasChanged ? _controller.page! : _currentPage * 1.0; - - // The horizontal position of the page between a 1 and 0 - var value = result - index; - value = (1 - (value.abs() * .5)).clamp(0.0, 1.0); - - return Center( - child: SizedBox( - height: Curves.easeOut.transform(value) * size.height, - width: Curves.easeOut.transform(value) * size.width, - child: child, - ), - ); - }, - child: widget.itemBuilder(context, index), - ), ); } diff --git a/animations/lib/src/misc/curved_animation.dart b/animations/lib/src/misc/curved_animation.dart index 500d7d28c15..e460653fdad 100644 --- a/animations/lib/src/misc/curved_animation.dart +++ b/animations/lib/src/misc/curved_animation.dart @@ -91,13 +91,12 @@ class _CurvedAnimationDemoState extends State style: Theme.of(context).textTheme.titleLarge, ), DropdownButton( - items: - curves.map((curve) { - return DropdownMenuItem( - value: curve, - child: Text(curve.name), - ); - }).toList(), + items: curves.map((curve) { + return DropdownMenuItem( + value: curve, + child: Text(curve.name), + ); + }).toList(), onChanged: (newCurve) { if (newCurve != null) { setState(() { @@ -114,13 +113,12 @@ class _CurvedAnimationDemoState extends State style: Theme.of(context).textTheme.titleLarge, ), DropdownButton( - items: - curves.map((curve) { - return DropdownMenuItem( - value: curve, - child: Text(curve.name), - ); - }).toList(), + items: curves.map((curve) { + return DropdownMenuItem( + value: curve, + child: Text(curve.name), + ); + }).toList(), onChanged: (newCurve) { if (newCurve != null) { setState(() { diff --git a/animations/lib/src/misc/expand_card.dart b/animations/lib/src/misc/expand_card.dart index c47829d4c17..d537d15b2a9 100644 --- a/animations/lib/src/misc/expand_card.dart +++ b/animations/lib/src/misc/expand_card.dart @@ -52,26 +52,24 @@ class _ExpandCardState extends State duration: duration, firstCurve: Curves.easeInOutCubic, secondCurve: Curves.easeInOutCubic, - crossFadeState: - selected - ? CrossFadeState.showSecond - : CrossFadeState.showFirst, + crossFadeState: selected + ? CrossFadeState.showSecond + : CrossFadeState.showFirst, // Use Positioned.fill() to pass the constraints to its children. // This allows the Images to use BoxFit.cover to cover the correct // size - layoutBuilder: ( - topChild, - topChildKey, - bottomChild, - bottomChildKey, - ) { - return Stack( - children: [ - Positioned.fill(key: bottomChildKey, child: bottomChild), - Positioned.fill(key: topChildKey, child: topChild), - ], - ); - }, + layoutBuilder: + (topChild, topChildKey, bottomChild, bottomChildKey) { + return Stack( + children: [ + Positioned.fill( + key: bottomChildKey, + child: bottomChild, + ), + Positioned.fill(key: topChildKey, child: topChild), + ], + ); + }, firstChild: Image.asset( 'assets/eat_cape_town_sm.jpg', fit: BoxFit.cover, diff --git a/animations/lib/src/misc/flutter_animate.dart b/animations/lib/src/misc/flutter_animate.dart index 88de877c69d..c31dde47c96 100644 --- a/animations/lib/src/misc/flutter_animate.dart +++ b/animations/lib/src/misc/flutter_animate.dart @@ -18,20 +18,21 @@ class FlutterAnimateDemo extends StatelessWidget { body: Center( child: Padding( padding: const EdgeInsets.all(16), - child: Text( - "Hello Flutter Animate", - style: Theme.of(context).textTheme.headlineLarge, - ) - .animate(onPlay: (controller) => controller.repeat()) - .then(delay: 250.ms) - .fadeIn(duration: 500.ms) - .then(delay: 250.ms) - .shimmer(duration: 400.ms) - .then(delay: 250.ms) - .slide() - .then(delay: 250.ms) - .blur(duration: 500.ms) - .then(delay: 100.ms), + child: + Text( + "Hello Flutter Animate", + style: Theme.of(context).textTheme.headlineLarge, + ) + .animate(onPlay: (controller) => controller.repeat()) + .then(delay: 250.ms) + .fadeIn(duration: 500.ms) + .then(delay: 250.ms) + .shimmer(duration: 400.ms) + .then(delay: 250.ms) + .slide() + .then(delay: 250.ms) + .blur(duration: 500.ms) + .then(delay: 100.ms), ), ), ); diff --git a/animations/lib/src/misc/focus_image.dart b/animations/lib/src/misc/focus_image.dart index 7031129cdf1..542fbb0d557 100644 --- a/animations/lib/src/misc/focus_image.dart +++ b/animations/lib/src/misc/focus_image.dart @@ -29,10 +29,12 @@ class Grid extends StatelessWidget { ), itemBuilder: (context, index) { return (index >= 20) - ? const SmallCard(imageAssetName: 'assets/eat_cape_town_sm.jpg') + ? const SmallCard( + imageAssetName: 'assets/eat_cape_town_sm.jpg', + ) : const SmallCard( - imageAssetName: 'assets/eat_new_orleans_sm.jpg', - ); + imageAssetName: 'assets/eat_new_orleans_sm.jpg', + ); }, ), ); @@ -50,7 +52,9 @@ Route _createRoute(BuildContext parentContext, String image) { ).chain(CurveTween(curve: Curves.ease)).animate(animation); return Stack( - children: [PositionedTransition(rect: rectAnimation, child: child)], + children: [ + PositionedTransition(rect: rectAnimation, child: child), + ], ); }, ); diff --git a/animations/lib/src/misc/hero_animation.dart b/animations/lib/src/misc/hero_animation.dart index 08bc030b9b1..372a4163555 100644 --- a/animations/lib/src/misc/hero_animation.dart +++ b/animations/lib/src/misc/hero_animation.dart @@ -15,10 +15,15 @@ class HeroAnimationDemo extends StatelessWidget { body: GestureDetector( child: Hero( tag: 'hero-page-child', - child: _createHeroContainer(size: 50.0, color: Colors.grey.shade300), + child: _createHeroContainer( + size: 50.0, + color: Colors.grey.shade300, + ), ), - onTap: - () => Navigator.of(context).push( + onTap: () => + Navigator.of( + context, + ).push( MaterialPageRoute(builder: (context) => const HeroPage()), ), ), @@ -52,7 +57,9 @@ StatelessWidget _createHeroContainer({ height: size, width: size, padding: const EdgeInsets.all(10.0), - margin: size < 100.0 ? const EdgeInsets.all(10.0) : const EdgeInsets.all(0), + margin: size < 100.0 + ? const EdgeInsets.all(10.0) + : const EdgeInsets.all(0), decoration: BoxDecoration(shape: BoxShape.circle, color: color), child: const FlutterLogo(), ); diff --git a/animations/lib/src/misc/physics_card_drag.dart b/animations/lib/src/misc/physics_card_drag.dart index 6249d20d3f5..e401c6ee2f9 100644 --- a/animations/lib/src/misc/physics_card_drag.dart +++ b/animations/lib/src/misc/physics_card_drag.dart @@ -78,7 +78,9 @@ class _DraggableCardState extends State void initState() { super.initState(); _controller = AnimationController.unbounded(vsync: this) - ..addListener(() => setState(() => _dragAlignment = _animation.value)); + ..addListener( + () => setState(() => _dragAlignment = _animation.value), + ); } @override @@ -92,17 +94,18 @@ class _DraggableCardState extends State final size = MediaQuery.of(context).size; return GestureDetector( onPanStart: (details) => _controller.stop(canceled: true), - onPanUpdate: - (details) => setState( - () => - _dragAlignment += Alignment( - details.delta.dx / (size.width / 2), - details.delta.dy / (size.height / 2), - ), - ), - onPanEnd: - (details) => _runAnimation(details.velocity.pixelsPerSecond, size), - child: Align(alignment: _dragAlignment, child: Card(child: widget.child)), + onPanUpdate: (details) => setState( + () => _dragAlignment += Alignment( + details.delta.dx / (size.width / 2), + details.delta.dy / (size.height / 2), + ), + ), + onPanEnd: (details) => + _runAnimation(details.velocity.pixelsPerSecond, size), + child: Align( + alignment: _dragAlignment, + child: Card(child: widget.child), + ), ); } } diff --git a/animations/lib/src/misc/repeating_animation.dart b/animations/lib/src/misc/repeating_animation.dart index bc0b978083a..2f1a21527fd 100644 --- a/animations/lib/src/misc/repeating_animation.dart +++ b/animations/lib/src/misc/repeating_animation.dart @@ -9,7 +9,8 @@ class RepeatingAnimationDemo extends StatefulWidget { static String routeName = 'misc/repeating_animation'; @override - State createState() => _RepeatingAnimationDemoState(); + State createState() => + _RepeatingAnimationDemoState(); } class _RepeatingAnimationDemoState extends State diff --git a/animations/pubspec.yaml b/animations/pubspec.yaml index 2754aabf425..b20928bd1c1 100644 --- a/animations/pubspec.yaml +++ b/animations/pubspec.yaml @@ -2,15 +2,16 @@ name: animations description: A new Flutter project. version: 1.0.0+1 publish_to: none +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter flutter_animate: ^4.1.0 - go_router: ^16.1.0 + go_router: ^16.0.0 window_size: # plugin is not yet part of the flutter framework git: url: https://github.com/google/flutter-desktop-embedding.git @@ -22,7 +23,6 @@ dev_dependencies: flutter_test: sdk: flutter - flutter: uses-material-design: true assets: diff --git a/animations/test/basics/animated_builder_test.dart b/animations/test/basics/animated_builder_test.dart index bdab93511d6..e60f9246cfc 100644 --- a/animations/test/basics/animated_builder_test.dart +++ b/animations/test/basics/animated_builder_test.dart @@ -16,7 +16,8 @@ void main() { // Get the initial color of the button. ElevatedButton button = tester.widget(find.byType(ElevatedButton)); - WidgetStateProperty? initialColor = button.style!.backgroundColor; + WidgetStateProperty? initialColor = + button.style!.backgroundColor; // Tap the button. await tester.tap(find.byType(ElevatedButton)); @@ -24,7 +25,8 @@ void main() { // Get the updated color of the button. button = tester.widget(find.byType(ElevatedButton)); - WidgetStateProperty? updatedColor = button.style!.backgroundColor; + WidgetStateProperty? updatedColor = + button.style!.backgroundColor; // Check if the color has changed. expect(initialColor, isNot(updatedColor)); @@ -35,7 +37,8 @@ void main() { // Get the initial color of the button. ElevatedButton button = tester.widget(find.byType(ElevatedButton)); - WidgetStateProperty? initialColor = button.style!.backgroundColor; + WidgetStateProperty? initialColor = + button.style!.backgroundColor; // Tap the button to trigger the animation but don't wait for it to finish. await tester.tap(find.byType(ElevatedButton)); @@ -44,7 +47,8 @@ void main() { // Check that the color has changed but not to the final color. button = tester.widget(find.byType(ElevatedButton)); - WidgetStateProperty? changedColor = button.style!.backgroundColor; + WidgetStateProperty? changedColor = + button.style!.backgroundColor; expect(initialColor, isNot(changedColor)); // Wait for the animation to finish. diff --git a/animations/test/misc/card_swipe_test.dart b/animations/test/misc/card_swipe_test.dart index 85536c0210d..0a75bb7aefe 100644 --- a/animations/test/misc/card_swipe_test.dart +++ b/animations/test/misc/card_swipe_test.dart @@ -24,7 +24,10 @@ void main() { await tester.pumpAndSettle(); // Check if removed properly. - expect(tester.widgetList(find.byType(Card)).length, lessThan(totalCards)); + expect( + tester.widgetList(find.byType(Card)).length, + lessThan(totalCards), + ); }); testWidgets('All cards swiped out', (tester) async { @@ -36,7 +39,10 @@ void main() { // Swipe out all cards. for (var i = 0; i < totalCards; i++) { // Swipe out one by one. - await tester.drag(find.byType(Card).last, const Offset(100.0, 0.0)); + await tester.drag( + find.byType(Card).last, + const Offset(100.0, 0.0), + ); await tester.pumpAndSettle(); } diff --git a/animations/test/misc/carousel_test.dart b/animations/test/misc/carousel_test.dart index b1fb6bb5900..2a0ea449e07 100644 --- a/animations/test/misc/carousel_test.dart +++ b/animations/test/misc/carousel_test.dart @@ -18,7 +18,11 @@ void main() { expect(imageList.length, 2); // Swipe the Carousel. - await tester.fling(find.byType(CarouselDemo), const Offset(-400, 0), 800); + await tester.fling( + find.byType(CarouselDemo), + const Offset(-400, 0), + 800, + ); await tester.pumpAndSettle(); // Get the images available on the screen after swipe. diff --git a/animations/test/misc/expand_card_test.dart b/animations/test/misc/expand_card_test.dart index d37ab0ae9d4..b955d27a99a 100644 --- a/animations/test/misc/expand_card_test.dart +++ b/animations/test/misc/expand_card_test.dart @@ -22,7 +22,10 @@ void main() { // The size of ExpandCard must change once tapped. // The initialSize should be less than current ExpandCard size. - expect(initialSize, lessThan(tester.getSize(find.byType(ExpandCard)))); + expect( + initialSize, + lessThan(tester.getSize(find.byType(ExpandCard))), + ); }); testWidgets('ExpandCard changes image on tap', (tester) async { diff --git a/animations/test/misc/focus_image_test.dart b/animations/test/misc/focus_image_test.dart index a65fc9e02cf..7b3f8e0e32b 100644 --- a/animations/test/misc/focus_image_test.dart +++ b/animations/test/misc/focus_image_test.dart @@ -33,7 +33,9 @@ void main() { expect(finalSize, greaterThan(initialSize)); }); - testWidgets('Final inkwell on tap goes back to the grid', (tester) async { + testWidgets('Final inkwell on tap goes back to the grid', ( + tester, + ) async { await tester.pumpWidget(createFocusImageScreen()); // Tap on the ink well at index 0. diff --git a/animations/test/misc/hero_animation_test.dart b/animations/test/misc/hero_animation_test.dart index c006cdddd65..48ca60a0fd5 100644 --- a/animations/test/misc/hero_animation_test.dart +++ b/animations/test/misc/hero_animation_test.dart @@ -58,7 +58,9 @@ void main() { // Final color should not be same as initial color. expect( (finalContainer.decoration as BoxDecoration).color, - isNot(equals((initialContainer.decoration as BoxDecoration).color)), + isNot( + equals((initialContainer.decoration as BoxDecoration).color), + ), ); }); @@ -66,7 +68,9 @@ void main() { await tester.pumpWidget(createHeroAnimationDemoScreen()); // Get the initial Screen. - final initialScreen = tester.firstWidget(find.byType(HeroAnimationDemo)); + final initialScreen = tester.firstWidget( + find.byType(HeroAnimationDemo), + ); // Tap on the GestureDetector. await tester.tap(find.byType(GestureDetector)); diff --git a/asset_transformation/analysis_options.yaml b/asset_transformation/analysis_options.yaml deleted file mode 100644 index f9b303465f1..00000000000 --- a/asset_transformation/analysis_options.yaml +++ /dev/null @@ -1 +0,0 @@ -include: package:flutter_lints/flutter.yaml diff --git a/asset_transformation/grayscale_transformer/bin/grayscale_transformer.dart b/asset_transformation/grayscale_transformer/bin/grayscale_transformer.dart index f0d4e7518e6..ac1e6179505 100644 --- a/asset_transformation/grayscale_transformer/bin/grayscale_transformer.dart +++ b/asset_transformation/grayscale_transformer/bin/grayscale_transformer.dart @@ -11,10 +11,9 @@ int main(List arguments) { // the `--input` option and one for the `--output` option. // `--input` is the original asset file that this program should transform. // `--output` is where flutter expects the transformation output to be written to. - final parser = - ArgParser() - ..addOption(inputOptionName, mandatory: true, abbr: 'i') - ..addOption(outputOptionName, mandatory: true, abbr: 'o'); + final parser = ArgParser() + ..addOption(inputOptionName, mandatory: true, abbr: 'i') + ..addOption(outputOptionName, mandatory: true, abbr: 'o'); ArgResults argResults = parser.parse(arguments); final String inputFilePath = argResults[inputOptionName]; diff --git a/asset_transformation/grayscale_transformer/pubspec.yaml b/asset_transformation/grayscale_transformer/pubspec.yaml index 5fe707dd187..27153b02e16 100644 --- a/asset_transformation/grayscale_transformer/pubspec.yaml +++ b/asset_transformation/grayscale_transformer/pubspec.yaml @@ -3,7 +3,7 @@ description: A sample command-line application. version: 1.0.0 environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: args: ^2.4.2 diff --git a/asset_transformation/pubspec.yaml b/asset_transformation/pubspec.yaml index ef57e2379b8..7b1a23ef64f 100644 --- a/asset_transformation/pubspec.yaml +++ b/asset_transformation/pubspec.yaml @@ -2,9 +2,10 @@ name: asset_transformation description: "A new Flutter project." publish_to: 'none' version: 0.1.0 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -12,9 +13,11 @@ dependencies: vector_graphics: ^1.1.11+1 dev_dependencies: + analysis_defaults: + path: ../analysis_defaults flutter_test: sdk: flutter - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 vector_graphics_compiler: ^1.1.11+1 grayscale_transformer: path: ./grayscale_transformer diff --git a/background_isolate_channels/lib/main.dart b/background_isolate_channels/lib/main.dart index a566f46ef56..a0c874e3439 100644 --- a/background_isolate_channels/lib/main.dart +++ b/background_isolate_channels/lib/main.dart @@ -69,8 +69,8 @@ class _MyHomePageState extends State { .then( (sharedPreferences) => sharedPreferences.setBool('isDebug', true), ); - final Future tempDirFuture = - path_provider.getTemporaryDirectory(); + final Future tempDirFuture = path_provider + .getTemporaryDirectory(); // Wait until the [SharedPreferences] value is set and the temporary // directory is received before opening the database. If @@ -130,8 +130,9 @@ class _MyHomePageState extends State { padding: const EdgeInsets.symmetric(horizontal: 8.0), child: SearchBar( hintText: 'Search', - onChanged: - _database == null ? null : (query) => _refresh(query: query), + onChanged: _database == null + ? null + : (query) => _refresh(query: query), trailing: const [Icon(Icons.search), SizedBox(width: 8)], ), ), diff --git a/background_isolate_channels/lib/simple_database.dart b/background_isolate_channels/lib/simple_database.dart index f53e149546f..8424123add5 100644 --- a/background_isolate_channels/lib/simple_database.dart +++ b/background_isolate_channels/lib/simple_database.dart @@ -188,7 +188,9 @@ class _SimpleDatabaseServer { // [BinaryMessenger] that the Platform Channels will communicate with on // the background isolate. // ---------------------------------------------------------------------- - BackgroundIsolateBinaryMessenger.ensureInitialized(rootIsolateToken); + BackgroundIsolateBinaryMessenger.ensureInitialized( + rootIsolateToken, + ); _sendPort.send(const _Command(_Codes.ack, arg0: null)); case _Codes.add: _doAddEntry(command.arg0 as String); diff --git a/background_isolate_channels/pubspec.yaml b/background_isolate_channels/pubspec.yaml index 144297a594e..b5b6bc213e3 100644 --- a/background_isolate_channels/pubspec.yaml +++ b/background_isolate_channels/pubspec.yaml @@ -1,12 +1,13 @@ name: background_isolate_channels description: A new Flutter project. +resolution: workspace publish_to: 'none' # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: cupertino_icons: ^1.0.2 @@ -23,6 +24,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/code_sharing/client/pubspec.yaml b/code_sharing/client/pubspec.yaml index ae1e57dbe9d..5dc10428d71 100644 --- a/code_sharing/client/pubspec.yaml +++ b/code_sharing/client/pubspec.yaml @@ -2,9 +2,10 @@ name: client description: A Flutter app which communicates with a Dart backend using shared business logic. publish_to: "none" version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: cupertino_icons: ^1.0.2 @@ -15,7 +16,9 @@ dependencies: path: ../shared dev_dependencies: - flutter_lints: ^5.0.0 + analysis_defaults: + path: ../../analysis_defaults + flutter_lints: ^6.0.0 flutter_test: sdk: flutter diff --git a/code_sharing/server/bin/server.dart b/code_sharing/server/bin/server.dart index 5a4e45825e6..60d74c9fd65 100644 --- a/code_sharing/server/bin/server.dart +++ b/code_sharing/server/bin/server.dart @@ -9,10 +9,9 @@ import 'package:shelf_router/shelf_router.dart'; int count = 0; // Configure routes. -final _router = - Router() - ..post('/', _incrementHandler) - ..get('/', _getValueHandler); +final _router = Router() + ..post('/', _incrementHandler) + ..get('/', _getValueHandler); Future _incrementHandler(Request request) async { final incr = Increment.fromJson(json.decode(await request.readAsString())); diff --git a/code_sharing/server/pubspec.yaml b/code_sharing/server/pubspec.yaml index d1b5ccd8b38..3d1827b1171 100644 --- a/code_sharing/server/pubspec.yaml +++ b/code_sharing/server/pubspec.yaml @@ -2,9 +2,10 @@ name: server description: A server app using the shelf package and Docker. version: 1.0.0 publish_to: "none" +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: args: ^2.0.0 @@ -14,6 +15,8 @@ dependencies: path: ../shared dev_dependencies: + analysis_defaults: + path: ../../analysis_defaults http: ^1.0.0 lints: ^6.0.0 test: ^1.15.0 diff --git a/code_sharing/shared/lib/src/models.freezed.dart b/code_sharing/shared/lib/src/models.freezed.dart index 7f0ca2e2de3..bd2ac83ae31 100644 --- a/code_sharing/shared/lib/src/models.freezed.dart +++ b/code_sharing/shared/lib/src/models.freezed.dart @@ -52,11 +52,10 @@ class _$IncrementCopyWithImpl<$Res, $Val extends Increment> $Res call({Object? by = null}) { return _then( _value.copyWith( - by: - null == by - ? _value.by - : by // ignore: cast_nullable_to_non_nullable - as int, + by: null == by + ? _value.by + : by // ignore: cast_nullable_to_non_nullable + as int, ) as $Val, ); @@ -89,11 +88,10 @@ class __$$IncrementImplCopyWithImpl<$Res> $Res call({Object? by = null}) { return _then( _$IncrementImpl( - by: - null == by - ? _value.by - : by // ignore: cast_nullable_to_non_nullable - as int, + by: null == by + ? _value.by + : by // ignore: cast_nullable_to_non_nullable + as int, ), ); } @@ -189,11 +187,10 @@ class _$CountCopyWithImpl<$Res, $Val extends Count> $Res call({Object? value = null}) { return _then( _value.copyWith( - value: - null == value - ? _value.value - : value // ignore: cast_nullable_to_non_nullable - as int, + value: null == value + ? _value.value + : value // ignore: cast_nullable_to_non_nullable + as int, ) as $Val, ); @@ -228,7 +225,7 @@ class __$$CountImplCopyWithImpl<$Res> null == value ? _value.value : value // ignore: cast_nullable_to_non_nullable - as int, + as int, ), ); } diff --git a/code_sharing/shared/pubspec.yaml b/code_sharing/shared/pubspec.yaml index ce204412fc0..3b43652d7bf 100644 --- a/code_sharing/shared/pubspec.yaml +++ b/code_sharing/shared/pubspec.yaml @@ -1,15 +1,18 @@ name: shared description: Common data models required by our client and server version: 1.0.0 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: freezed_annotation: ">=2.1.0 <4.0.0" json_annotation: ^4.7.0 dev_dependencies: + analysis_defaults: + path: ../../analysis_defaults build_runner: ^2.2.1 freezed: ">=2.1.1 <4.0.0" json_serializable: ^6.4.0 diff --git a/compass_app/app/lib/config/dependencies.dart b/compass_app/app/lib/config/dependencies.dart index 3b2bd541af7..29e3543ebce 100644 --- a/compass_app/app/lib/config/dependencies.dart +++ b/compass_app/app/lib/config/dependencies.dart @@ -36,12 +36,11 @@ import '../domain/use_cases/booking/booking_share_use_case.dart'; List _sharedProviders = [ Provider( lazy: true, - create: - (context) => BookingCreateUseCase( - destinationRepository: context.read(), - activityRepository: context.read(), - bookingRepository: context.read(), - ), + create: (context) => BookingCreateUseCase( + destinationRepository: context.read(), + activityRepository: context.read(), + bookingRepository: context.read(), + ), ), Provider( lazy: true, @@ -57,46 +56,40 @@ List get providersRemote { Provider(create: (context) => ApiClient()), Provider(create: (context) => SharedPreferencesService()), ChangeNotifierProvider( - create: - (context) => - AuthRepositoryRemote( - authApiClient: context.read(), - apiClient: context.read(), - sharedPreferencesService: context.read(), - ) - as AuthRepository, + create: (context) => + AuthRepositoryRemote( + authApiClient: context.read(), + apiClient: context.read(), + sharedPreferencesService: context.read(), + ) + as AuthRepository, ), Provider( - create: - (context) => - DestinationRepositoryRemote(apiClient: context.read()) - as DestinationRepository, + create: (context) => + DestinationRepositoryRemote(apiClient: context.read()) + as DestinationRepository, ), Provider( - create: - (context) => - ContinentRepositoryRemote(apiClient: context.read()) - as ContinentRepository, + create: (context) => + ContinentRepositoryRemote(apiClient: context.read()) + as ContinentRepository, ), Provider( - create: - (context) => - ActivityRepositoryRemote(apiClient: context.read()) - as ActivityRepository, + create: (context) => + ActivityRepositoryRemote(apiClient: context.read()) + as ActivityRepository, ), Provider.value( value: ItineraryConfigRepositoryMemory() as ItineraryConfigRepository, ), Provider( - create: - (context) => - BookingRepositoryRemote(apiClient: context.read()) - as BookingRepository, + create: (context) => + BookingRepositoryRemote(apiClient: context.read()) + as BookingRepository, ), Provider( - create: - (context) => - UserRepositoryRemote(apiClient: context.read()) as UserRepository, + create: (context) => + UserRepositoryRemote(apiClient: context.read()) as UserRepository, ), ..._sharedProviders, ]; @@ -110,37 +103,32 @@ List get providersLocal { ChangeNotifierProvider.value(value: AuthRepositoryDev() as AuthRepository), Provider.value(value: LocalDataService()), Provider( - create: - (context) => - DestinationRepositoryLocal(localDataService: context.read()) - as DestinationRepository, + create: (context) => + DestinationRepositoryLocal(localDataService: context.read()) + as DestinationRepository, ), Provider( - create: - (context) => - ContinentRepositoryLocal(localDataService: context.read()) - as ContinentRepository, + create: (context) => + ContinentRepositoryLocal(localDataService: context.read()) + as ContinentRepository, ), Provider( - create: - (context) => - ActivityRepositoryLocal(localDataService: context.read()) - as ActivityRepository, + create: (context) => + ActivityRepositoryLocal(localDataService: context.read()) + as ActivityRepository, ), Provider( - create: - (context) => - BookingRepositoryLocal(localDataService: context.read()) - as BookingRepository, + create: (context) => + BookingRepositoryLocal(localDataService: context.read()) + as BookingRepository, ), Provider.value( value: ItineraryConfigRepositoryMemory() as ItineraryConfigRepository, ), Provider( - create: - (context) => - UserRepositoryLocal(localDataService: context.read()) - as UserRepository, + create: (context) => + UserRepositoryLocal(localDataService: context.read()) + as UserRepository, ), ..._sharedProviders, ]; diff --git a/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart b/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart index c18c96aef7e..bb13df13af4 100644 --- a/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart +++ b/compass_app/app/lib/data/repositories/activity/activity_repository_local.dart @@ -18,10 +18,9 @@ class ActivityRepositoryLocal implements ActivityRepository { @override Future>> getByDestination(String ref) async { try { - final activities = - (await _localDataService.getActivities()) - .where((activity) => activity.destinationRef == ref) - .toList(); + final activities = (await _localDataService.getActivities()) + .where((activity) => activity.destinationRef == ref) + .toList(); return Result.ok(activities); } on Exception catch (error) { diff --git a/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart b/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart index c8bdf0e702a..a83a1f30a0b 100644 --- a/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart +++ b/compass_app/app/lib/data/repositories/booking/booking_repository_local.dart @@ -68,11 +68,10 @@ class BookingRepositoryLocal implements BookingRepository { // create a default booking the first time if (_bookings.isEmpty) { final destination = (await _localDataService.getDestinations()).first; - final activities = - (await _localDataService.getActivities()) - .where((activity) => activity.destinationRef == destination.ref) - .take(4) - .toList(); + final activities = (await _localDataService.getActivities()) + .where((activity) => activity.destinationRef == destination.ref) + .take(4) + .toList(); _bookings.add( Booking( diff --git a/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart b/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart index 6e721778f4e..c4d410272c7 100644 --- a/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart +++ b/compass_app/app/lib/data/repositories/booking/booking_repository_remote.dart @@ -27,8 +27,9 @@ class BookingRepositoryRemote implements BookingRepository { endDate: booking.endDate, name: '${booking.destination.name}, ${booking.destination.continent}', destinationRef: booking.destination.ref, - activitiesRef: - booking.activity.map((activity) => activity.ref).toList(), + activitiesRef: booking.activity + .map((activity) => activity.ref) + .toList(), ); return _apiClient.postBooking(bookingApiModel); } on Exception catch (e) { @@ -72,10 +73,9 @@ class BookingRepositoryRemote implements BookingRepository { return Result.error(resultActivities.error); case Ok>(): } - final activities = - resultActivities.value - .where((activity) => booking.activitiesRef.contains(activity.ref)) - .toList(); + final activities = resultActivities.value + .where((activity) => booking.activitiesRef.contains(activity.ref)) + .toList(); return Result.ok( Booking( diff --git a/compass_app/app/lib/data/services/api/api_client.dart b/compass_app/app/lib/data/services/api/api_client.dart index 22c32e8293d..bb4934ff5ba 100644 --- a/compass_app/app/lib/data/services/api/api_client.dart +++ b/compass_app/app/lib/data/services/api/api_client.dart @@ -95,8 +95,9 @@ class ApiClient { if (response.statusCode == 200) { final stringData = await response.transform(utf8.decoder).join(); final json = jsonDecode(stringData) as List; - final activities = - json.map((element) => Activity.fromJson(element)).toList(); + final activities = json + .map((element) => Activity.fromJson(element)) + .toList(); return Result.ok(activities); } else { return const Result.error(HttpException("Invalid response")); @@ -117,8 +118,9 @@ class ApiClient { if (response.statusCode == 200) { final stringData = await response.transform(utf8.decoder).join(); final json = jsonDecode(stringData) as List; - final bookings = - json.map((element) => BookingApiModel.fromJson(element)).toList(); + final bookings = json + .map((element) => BookingApiModel.fromJson(element)) + .toList(); return Result.ok(bookings); } else { return const Result.error(HttpException("Invalid response")); diff --git a/compass_app/app/lib/data/services/api/model/booking/booking_api_model.freezed.dart b/compass_app/app/lib/data/services/api/model/booking/booking_api_model.freezed.dart index 6a6f31722a2..c63720610dd 100644 --- a/compass_app/app/lib/data/services/api/model/booking/booking_api_model.freezed.dart +++ b/compass_app/app/lib/data/services/api/model/booking/booking_api_model.freezed.dart @@ -91,36 +91,30 @@ class _$BookingApiModelCopyWithImpl<$Res, $Val extends BookingApiModel> }) { return _then( _value.copyWith( - id: - freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - activitiesRef: - null == activitiesRef - ? _value.activitiesRef - : activitiesRef // ignore: cast_nullable_to_non_nullable - as List, + id: freezed == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int?, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + activitiesRef: null == activitiesRef + ? _value.activitiesRef + : activitiesRef // ignore: cast_nullable_to_non_nullable + as List, ) as $Val, ); @@ -169,36 +163,30 @@ class __$$BookingApiModelImplCopyWithImpl<$Res> }) { return _then( _$BookingApiModelImpl( - id: - freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - activitiesRef: - null == activitiesRef - ? _value._activitiesRef - : activitiesRef // ignore: cast_nullable_to_non_nullable - as List, + id: freezed == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int?, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + activitiesRef: null == activitiesRef + ? _value._activitiesRef + : activitiesRef // ignore: cast_nullable_to_non_nullable + as List, ), ); } diff --git a/compass_app/app/lib/data/services/api/model/booking/booking_api_model.g.dart b/compass_app/app/lib/data/services/api/model/booking/booking_api_model.g.dart index d5df306a3d2..c75b5349a40 100644 --- a/compass_app/app/lib/data/services/api/model/booking/booking_api_model.g.dart +++ b/compass_app/app/lib/data/services/api/model/booking/booking_api_model.g.dart @@ -14,8 +14,9 @@ _$BookingApiModelImpl _$$BookingApiModelImplFromJson( endDate: DateTime.parse(json['endDate'] as String), name: json['name'] as String, destinationRef: json['destinationRef'] as String, - activitiesRef: - (json['activitiesRef'] as List).map((e) => e as String).toList(), + activitiesRef: (json['activitiesRef'] as List) + .map((e) => e as String) + .toList(), ); Map _$$BookingApiModelImplToJson( diff --git a/compass_app/app/lib/data/services/api/model/login_request/login_request.freezed.dart b/compass_app/app/lib/data/services/api/model/login_request/login_request.freezed.dart index a45082a15ab..db4394ebb66 100644 --- a/compass_app/app/lib/data/services/api/model/login_request/login_request.freezed.dart +++ b/compass_app/app/lib/data/services/api/model/login_request/login_request.freezed.dart @@ -64,16 +64,14 @@ class _$LoginRequestCopyWithImpl<$Res, $Val extends LoginRequest> $Res call({Object? email = null, Object? password = null}) { return _then( _value.copyWith( - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - password: - null == password - ? _value.password - : password // ignore: cast_nullable_to_non_nullable - as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + password: null == password + ? _value.password + : password // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -108,16 +106,14 @@ class __$$LoginRequestImplCopyWithImpl<$Res> $Res call({Object? email = null, Object? password = null}) { return _then( _$LoginRequestImpl( - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - password: - null == password - ? _value.password - : password // ignore: cast_nullable_to_non_nullable - as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + password: null == password + ? _value.password + : password // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/data/services/api/model/login_response/login_response.freezed.dart b/compass_app/app/lib/data/services/api/model/login_response/login_response.freezed.dart index 49be034ebf2..dfaf762b275 100644 --- a/compass_app/app/lib/data/services/api/model/login_response/login_response.freezed.dart +++ b/compass_app/app/lib/data/services/api/model/login_response/login_response.freezed.dart @@ -64,16 +64,14 @@ class _$LoginResponseCopyWithImpl<$Res, $Val extends LoginResponse> $Res call({Object? token = null, Object? userId = null}) { return _then( _value.copyWith( - token: - null == token - ? _value.token - : token // ignore: cast_nullable_to_non_nullable - as String, - userId: - null == userId - ? _value.userId - : userId // ignore: cast_nullable_to_non_nullable - as String, + token: null == token + ? _value.token + : token // ignore: cast_nullable_to_non_nullable + as String, + userId: null == userId + ? _value.userId + : userId // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -108,16 +106,14 @@ class __$$LoginResponseImplCopyWithImpl<$Res> $Res call({Object? token = null, Object? userId = null}) { return _then( _$LoginResponseImpl( - token: - null == token - ? _value.token - : token // ignore: cast_nullable_to_non_nullable - as String, - userId: - null == userId - ? _value.userId - : userId // ignore: cast_nullable_to_non_nullable - as String, + token: null == token + ? _value.token + : token // ignore: cast_nullable_to_non_nullable + as String, + userId: null == userId + ? _value.userId + : userId // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/data/services/api/model/user/user_api_model.freezed.dart b/compass_app/app/lib/data/services/api/model/user/user_api_model.freezed.dart index 1ba6de18f9d..2d8ad102722 100644 --- a/compass_app/app/lib/data/services/api/model/user/user_api_model.freezed.dart +++ b/compass_app/app/lib/data/services/api/model/user/user_api_model.freezed.dart @@ -75,26 +75,22 @@ class _$UserApiModelCopyWithImpl<$Res, $Val extends UserApiModel> }) { return _then( _value.copyWith( - id: - null == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - picture: - null == picture - ? _value.picture - : picture // ignore: cast_nullable_to_non_nullable - as String, + id: null == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + picture: null == picture + ? _value.picture + : picture // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -134,26 +130,22 @@ class __$$UserApiModelImplCopyWithImpl<$Res> }) { return _then( _$UserApiModelImpl( - id: - null == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - picture: - null == picture - ? _value.picture - : picture // ignore: cast_nullable_to_non_nullable - as String, + id: null == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + picture: null == picture + ? _value.picture + : picture // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/domain/models/activity/activity.freezed.dart b/compass_app/app/lib/domain/models/activity/activity.freezed.dart index b900e74daa5..0c89f888a43 100644 --- a/compass_app/app/lib/domain/models/activity/activity.freezed.dart +++ b/compass_app/app/lib/domain/models/activity/activity.freezed.dart @@ -109,56 +109,46 @@ class _$ActivityCopyWithImpl<$Res, $Val extends Activity> }) { return _then( _value.copyWith( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - description: - null == description - ? _value.description - : description // ignore: cast_nullable_to_non_nullable - as String, - locationName: - null == locationName - ? _value.locationName - : locationName // ignore: cast_nullable_to_non_nullable - as String, - duration: - null == duration - ? _value.duration - : duration // ignore: cast_nullable_to_non_nullable - as int, - timeOfDay: - null == timeOfDay - ? _value.timeOfDay - : timeOfDay // ignore: cast_nullable_to_non_nullable - as TimeOfDay, - familyFriendly: - null == familyFriendly - ? _value.familyFriendly - : familyFriendly // ignore: cast_nullable_to_non_nullable - as bool, - price: - null == price - ? _value.price - : price // ignore: cast_nullable_to_non_nullable - as int, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + description: null == description + ? _value.description + : description // ignore: cast_nullable_to_non_nullable + as String, + locationName: null == locationName + ? _value.locationName + : locationName // ignore: cast_nullable_to_non_nullable + as String, + duration: null == duration + ? _value.duration + : duration // ignore: cast_nullable_to_non_nullable + as int, + timeOfDay: null == timeOfDay + ? _value.timeOfDay + : timeOfDay // ignore: cast_nullable_to_non_nullable + as TimeOfDay, + familyFriendly: null == familyFriendly + ? _value.familyFriendly + : familyFriendly // ignore: cast_nullable_to_non_nullable + as bool, + price: null == price + ? _value.price + : price // ignore: cast_nullable_to_non_nullable + as int, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -215,56 +205,46 @@ class __$$ActivityImplCopyWithImpl<$Res> }) { return _then( _$ActivityImpl( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - description: - null == description - ? _value.description - : description // ignore: cast_nullable_to_non_nullable - as String, - locationName: - null == locationName - ? _value.locationName - : locationName // ignore: cast_nullable_to_non_nullable - as String, - duration: - null == duration - ? _value.duration - : duration // ignore: cast_nullable_to_non_nullable - as int, - timeOfDay: - null == timeOfDay - ? _value.timeOfDay - : timeOfDay // ignore: cast_nullable_to_non_nullable - as TimeOfDay, - familyFriendly: - null == familyFriendly - ? _value.familyFriendly - : familyFriendly // ignore: cast_nullable_to_non_nullable - as bool, - price: - null == price - ? _value.price - : price // ignore: cast_nullable_to_non_nullable - as int, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + description: null == description + ? _value.description + : description // ignore: cast_nullable_to_non_nullable + as String, + locationName: null == locationName + ? _value.locationName + : locationName // ignore: cast_nullable_to_non_nullable + as String, + duration: null == duration + ? _value.duration + : duration // ignore: cast_nullable_to_non_nullable + as int, + timeOfDay: null == timeOfDay + ? _value.timeOfDay + : timeOfDay // ignore: cast_nullable_to_non_nullable + as TimeOfDay, + familyFriendly: null == familyFriendly + ? _value.familyFriendly + : familyFriendly // ignore: cast_nullable_to_non_nullable + as bool, + price: null == price + ? _value.price + : price // ignore: cast_nullable_to_non_nullable + as int, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/domain/models/booking/booking.freezed.dart b/compass_app/app/lib/domain/models/booking/booking.freezed.dart index 991449de1b1..03a1ebc9d0c 100644 --- a/compass_app/app/lib/domain/models/booking/booking.freezed.dart +++ b/compass_app/app/lib/domain/models/booking/booking.freezed.dart @@ -85,31 +85,26 @@ class _$BookingCopyWithImpl<$Res, $Val extends Booking> }) { return _then( _value.copyWith( - id: - freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, - destination: - null == destination - ? _value.destination - : destination // ignore: cast_nullable_to_non_nullable - as Destination, - activity: - null == activity - ? _value.activity - : activity // ignore: cast_nullable_to_non_nullable - as List, + id: freezed == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int?, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, + destination: null == destination + ? _value.destination + : destination // ignore: cast_nullable_to_non_nullable + as Destination, + activity: null == activity + ? _value.activity + : activity // ignore: cast_nullable_to_non_nullable + as List, ) as $Val, ); @@ -168,31 +163,26 @@ class __$$BookingImplCopyWithImpl<$Res> }) { return _then( _$BookingImpl( - id: - freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, - destination: - null == destination - ? _value.destination - : destination // ignore: cast_nullable_to_non_nullable - as Destination, - activity: - null == activity - ? _value._activity - : activity // ignore: cast_nullable_to_non_nullable - as List, + id: freezed == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int?, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, + destination: null == destination + ? _value.destination + : destination // ignore: cast_nullable_to_non_nullable + as Destination, + activity: null == activity + ? _value._activity + : activity // ignore: cast_nullable_to_non_nullable + as List, ), ); } diff --git a/compass_app/app/lib/domain/models/booking/booking.g.dart b/compass_app/app/lib/domain/models/booking/booking.g.dart index 7d800c47ab1..6c851aba401 100644 --- a/compass_app/app/lib/domain/models/booking/booking.g.dart +++ b/compass_app/app/lib/domain/models/booking/booking.g.dart @@ -14,10 +14,9 @@ _$BookingImpl _$$BookingImplFromJson(Map json) => destination: Destination.fromJson( json['destination'] as Map, ), - activity: - (json['activity'] as List) - .map((e) => Activity.fromJson(e as Map)) - .toList(), + activity: (json['activity'] as List) + .map((e) => Activity.fromJson(e as Map)) + .toList(), ); Map _$$BookingImplToJson(_$BookingImpl instance) => diff --git a/compass_app/app/lib/domain/models/booking/booking_summary.freezed.dart b/compass_app/app/lib/domain/models/booking/booking_summary.freezed.dart index e31b7faeff8..a06a75da31e 100644 --- a/compass_app/app/lib/domain/models/booking/booking_summary.freezed.dart +++ b/compass_app/app/lib/domain/models/booking/booking_summary.freezed.dart @@ -75,26 +75,22 @@ class _$BookingSummaryCopyWithImpl<$Res, $Val extends BookingSummary> }) { return _then( _value.copyWith( - id: - null == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, + id: null == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, ) as $Val, ); @@ -134,26 +130,22 @@ class __$$BookingSummaryImplCopyWithImpl<$Res> }) { return _then( _$BookingSummaryImpl( - id: - null == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, + id: null == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, ), ); } diff --git a/compass_app/app/lib/domain/models/continent/continent.freezed.dart b/compass_app/app/lib/domain/models/continent/continent.freezed.dart index cb6688a65f4..6f13817d16b 100644 --- a/compass_app/app/lib/domain/models/continent/continent.freezed.dart +++ b/compass_app/app/lib/domain/models/continent/continent.freezed.dart @@ -62,16 +62,14 @@ class _$ContinentCopyWithImpl<$Res, $Val extends Continent> $Res call({Object? name = null, Object? imageUrl = null}) { return _then( _value.copyWith( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -106,16 +104,14 @@ class __$$ContinentImplCopyWithImpl<$Res> $Res call({Object? name = null, Object? imageUrl = null}) { return _then( _$ContinentImpl( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/domain/models/destination/destination.freezed.dart b/compass_app/app/lib/domain/models/destination/destination.freezed.dart index 30789a9691a..1babb93539a 100644 --- a/compass_app/app/lib/domain/models/destination/destination.freezed.dart +++ b/compass_app/app/lib/domain/models/destination/destination.freezed.dart @@ -95,41 +95,34 @@ class _$DestinationCopyWithImpl<$Res, $Val extends Destination> }) { return _then( _value.copyWith( - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - country: - null == country - ? _value.country - : country // ignore: cast_nullable_to_non_nullable - as String, - continent: - null == continent - ? _value.continent - : continent // ignore: cast_nullable_to_non_nullable - as String, - knownFor: - null == knownFor - ? _value.knownFor - : knownFor // ignore: cast_nullable_to_non_nullable - as String, - tags: - null == tags - ? _value.tags - : tags // ignore: cast_nullable_to_non_nullable - as List, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + country: null == country + ? _value.country + : country // ignore: cast_nullable_to_non_nullable + as String, + continent: null == continent + ? _value.continent + : continent // ignore: cast_nullable_to_non_nullable + as String, + knownFor: null == knownFor + ? _value.knownFor + : knownFor // ignore: cast_nullable_to_non_nullable + as String, + tags: null == tags + ? _value.tags + : tags // ignore: cast_nullable_to_non_nullable + as List, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -180,41 +173,34 @@ class __$$DestinationImplCopyWithImpl<$Res> }) { return _then( _$DestinationImpl( - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - country: - null == country - ? _value.country - : country // ignore: cast_nullable_to_non_nullable - as String, - continent: - null == continent - ? _value.continent - : continent // ignore: cast_nullable_to_non_nullable - as String, - knownFor: - null == knownFor - ? _value.knownFor - : knownFor // ignore: cast_nullable_to_non_nullable - as String, - tags: - null == tags - ? _value._tags - : tags // ignore: cast_nullable_to_non_nullable - as List, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + country: null == country + ? _value.country + : country // ignore: cast_nullable_to_non_nullable + as String, + continent: null == continent + ? _value.continent + : continent // ignore: cast_nullable_to_non_nullable + as String, + knownFor: null == knownFor + ? _value.knownFor + : knownFor // ignore: cast_nullable_to_non_nullable + as String, + tags: null == tags + ? _value._tags + : tags // ignore: cast_nullable_to_non_nullable + as List, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.freezed.dart b/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.freezed.dart index b4febdbc551..e933300d85b 100644 --- a/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.freezed.dart +++ b/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.freezed.dart @@ -90,36 +90,30 @@ class _$ItineraryConfigCopyWithImpl<$Res, $Val extends ItineraryConfig> }) { return _then( _value.copyWith( - continent: - freezed == continent - ? _value.continent - : continent // ignore: cast_nullable_to_non_nullable - as String?, - startDate: - freezed == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime?, - endDate: - freezed == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime?, - guests: - freezed == guests - ? _value.guests - : guests // ignore: cast_nullable_to_non_nullable - as int?, - destination: - freezed == destination - ? _value.destination - : destination // ignore: cast_nullable_to_non_nullable - as String?, - activities: - null == activities - ? _value.activities - : activities // ignore: cast_nullable_to_non_nullable - as List, + continent: freezed == continent + ? _value.continent + : continent // ignore: cast_nullable_to_non_nullable + as String?, + startDate: freezed == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime?, + endDate: freezed == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime?, + guests: freezed == guests + ? _value.guests + : guests // ignore: cast_nullable_to_non_nullable + as int?, + destination: freezed == destination + ? _value.destination + : destination // ignore: cast_nullable_to_non_nullable + as String?, + activities: null == activities + ? _value.activities + : activities // ignore: cast_nullable_to_non_nullable + as List, ) as $Val, ); @@ -168,36 +162,30 @@ class __$$ItineraryConfigImplCopyWithImpl<$Res> }) { return _then( _$ItineraryConfigImpl( - continent: - freezed == continent - ? _value.continent - : continent // ignore: cast_nullable_to_non_nullable - as String?, - startDate: - freezed == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime?, - endDate: - freezed == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime?, - guests: - freezed == guests - ? _value.guests - : guests // ignore: cast_nullable_to_non_nullable - as int?, - destination: - freezed == destination - ? _value.destination - : destination // ignore: cast_nullable_to_non_nullable - as String?, - activities: - null == activities - ? _value._activities - : activities // ignore: cast_nullable_to_non_nullable - as List, + continent: freezed == continent + ? _value.continent + : continent // ignore: cast_nullable_to_non_nullable + as String?, + startDate: freezed == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime?, + endDate: freezed == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime?, + guests: freezed == guests + ? _value.guests + : guests // ignore: cast_nullable_to_non_nullable + as int?, + destination: freezed == destination + ? _value.destination + : destination // ignore: cast_nullable_to_non_nullable + as String?, + activities: null == activities + ? _value._activities + : activities // ignore: cast_nullable_to_non_nullable + as List, ), ); } diff --git a/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.g.dart b/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.g.dart index 6bd037844f3..c012d7ad05e 100644 --- a/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.g.dart +++ b/compass_app/app/lib/domain/models/itinerary_config/itinerary_config.g.dart @@ -10,14 +10,12 @@ _$ItineraryConfigImpl _$$ItineraryConfigImplFromJson( Map json, ) => _$ItineraryConfigImpl( continent: json['continent'] as String?, - startDate: - json['startDate'] == null - ? null - : DateTime.parse(json['startDate'] as String), - endDate: - json['endDate'] == null - ? null - : DateTime.parse(json['endDate'] as String), + startDate: json['startDate'] == null + ? null + : DateTime.parse(json['startDate'] as String), + endDate: json['endDate'] == null + ? null + : DateTime.parse(json['endDate'] as String), guests: (json['guests'] as num?)?.toInt(), destination: json['destination'] as String?, activities: diff --git a/compass_app/app/lib/domain/models/user/user.freezed.dart b/compass_app/app/lib/domain/models/user/user.freezed.dart index 019912a0206..b510aac73b0 100644 --- a/compass_app/app/lib/domain/models/user/user.freezed.dart +++ b/compass_app/app/lib/domain/models/user/user.freezed.dart @@ -61,16 +61,14 @@ class _$UserCopyWithImpl<$Res, $Val extends User> $Res call({Object? name = null, Object? picture = null}) { return _then( _value.copyWith( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - picture: - null == picture - ? _value.picture - : picture // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + picture: null == picture + ? _value.picture + : picture // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -102,16 +100,14 @@ class __$$UserImplCopyWithImpl<$Res> $Res call({Object? name = null, Object? picture = null}) { return _then( _$UserImpl( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - picture: - null == picture - ? _value.picture - : picture // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + picture: null == picture + ? _value.picture + : picture // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart b/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart index 50f0eff76bc..3fcff3e30b9 100644 --- a/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart +++ b/compass_app/app/lib/domain/use_cases/booking/booking_create_use_case.dart @@ -63,12 +63,9 @@ class BookingCreateUseCase { return Result.error(activitiesResult.error); case Ok>(): } - final activities = - activitiesResult.value - .where( - (activity) => itineraryConfig.activities.contains(activity.ref), - ) - .toList(); + final activities = activitiesResult.value + .where((activity) => itineraryConfig.activities.contains(activity.ref)) + .toList(); _log.fine('Activities loaded (${activities.length})'); // Check if dates are set diff --git a/compass_app/app/lib/ui/activities/view_models/activities_viewmodel.dart b/compass_app/app/lib/ui/activities/view_models/activities_viewmodel.dart index cda783531f5..61ecd66bbd0 100644 --- a/compass_app/app/lib/ui/activities/view_models/activities_viewmodel.dart +++ b/compass_app/app/lib/ui/activities/view_models/activities_viewmodel.dart @@ -67,26 +67,24 @@ class ActivitiesViewModel extends ChangeNotifier { switch (resultActivities) { case Ok(): { - _daytimeActivities = - resultActivities.value - .where( - (activity) => [ - TimeOfDay.any, - TimeOfDay.morning, - TimeOfDay.afternoon, - ].contains(activity.timeOfDay), - ) - .toList(); - - _eveningActivities = - resultActivities.value - .where( - (activity) => [ - TimeOfDay.evening, - TimeOfDay.night, - ].contains(activity.timeOfDay), - ) - .toList(); + _daytimeActivities = resultActivities.value + .where( + (activity) => [ + TimeOfDay.any, + TimeOfDay.morning, + TimeOfDay.afternoon, + ].contains(activity.timeOfDay), + ) + .toList(); + + _eveningActivities = resultActivities.value + .where( + (activity) => [ + TimeOfDay.evening, + TimeOfDay.night, + ].contains(activity.timeOfDay), + ) + .toList(); _log.fine( 'Activities (daytime: ${_daytimeActivities.length}, ' diff --git a/compass_app/app/lib/ui/activities/widgets/activities_screen.dart b/compass_app/app/lib/ui/activities/widgets/activities_screen.dart index 7b784ac5845..f2ba884f44a 100644 --- a/compass_app/app/lib/ui/activities/widgets/activities_screen.dart +++ b/compass_app/app/lib/ui/activities/widgets/activities_screen.dart @@ -71,10 +71,9 @@ class _ActivitiesScreenState extends State { Expanded( child: Center( child: ErrorIndicator( - title: - AppLocalization.of( - context, - ).errorWhileLoadingActivities, + title: AppLocalization.of( + context, + ).errorWhileLoadingActivities, label: AppLocalization.of(context).tryAgain, onPressed: widget.viewModel.loadActivities.execute, ), @@ -171,10 +170,9 @@ class _BottomArea extends StatelessWidget { ), FilledButton( key: const Key(confirmButtonKey), - onPressed: - viewModel.selectedActivities.isNotEmpty - ? viewModel.saveActivities.execute - : null, + onPressed: viewModel.selectedActivities.isNotEmpty + ? viewModel.saveActivities.execute + : null, child: Text(AppLocalization.of(context).confirm), ), ], diff --git a/compass_app/app/lib/ui/auth/login/widgets/login_screen.dart b/compass_app/app/lib/ui/auth/login/widgets/login_screen.dart index fb8ed14eb76..60be3f4ac55 100644 --- a/compass_app/app/lib/ui/auth/login/widgets/login_screen.dart +++ b/compass_app/app/lib/ui/auth/login/widgets/login_screen.dart @@ -99,11 +99,10 @@ class _LoginScreenState extends State { content: Text(AppLocalization.of(context).errorWhileLogin), action: SnackBarAction( label: AppLocalization.of(context).tryAgain, - onPressed: - () => widget.viewModel.login.execute(( - _email.value.text, - _password.value.text, - )), + onPressed: () => widget.viewModel.login.execute(( + _email.value.text, + _password.value.text, + )), ), ), ); diff --git a/compass_app/app/lib/ui/booking/view_models/booking_viewmodel.dart b/compass_app/app/lib/ui/booking/view_models/booking_viewmodel.dart index 2ab853b52bb..21d2e39facf 100644 --- a/compass_app/app/lib/ui/booking/view_models/booking_viewmodel.dart +++ b/compass_app/app/lib/ui/booking/view_models/booking_viewmodel.dart @@ -50,8 +50,8 @@ class BookingViewModel extends ChangeNotifier { Future> _createBooking() async { _log.fine('Loading booking'); - final itineraryConfig = - await _itineraryConfigRepository.getItineraryConfig(); + final itineraryConfig = await _itineraryConfigRepository + .getItineraryConfig(); switch (itineraryConfig) { case Ok(): _log.fine('Loaded stored ItineraryConfig'); diff --git a/compass_app/app/lib/ui/booking/widgets/booking_header.dart b/compass_app/app/lib/ui/booking/widgets/booking_header.dart index 474417d8e6f..0c889aede04 100644 --- a/compass_app/app/lib/ui/booking/widgets/booking_header.dart +++ b/compass_app/app/lib/ui/booking/widgets/booking_header.dart @@ -90,18 +90,17 @@ class _Tags extends StatelessWidget { child: Wrap( spacing: 6, runSpacing: 6, - children: - booking.destination.tags - .map( - (tag) => TagChip( - tag: tag, - fontSize: 16, - height: 32, - chipColor: chipColor, - onChipColor: Theme.of(context).colorScheme.onSurface, - ), - ) - .toList(), + children: booking.destination.tags + .map( + (tag) => TagChip( + tag: tag, + fontSize: 16, + height: 32, + chipColor: chipColor, + onChipColor: Theme.of(context).colorScheme.onSurface, + ), + ) + .toList(), ), ); } diff --git a/compass_app/app/lib/ui/booking/widgets/booking_screen.dart b/compass_app/app/lib/ui/booking/widgets/booking_screen.dart index 379a628cd6c..0180231a5a5 100644 --- a/compass_app/app/lib/ui/booking/widgets/booking_screen.dart +++ b/compass_app/app/lib/ui/booking/widgets/booking_screen.dart @@ -44,18 +44,16 @@ class _BookingScreenState extends State { child: Scaffold( floatingActionButton: ListenableBuilder( listenable: widget.viewModel, - builder: - (context, _) => FloatingActionButton.extended( - // Workaround for https://github.com/flutter/flutter/issues/115358#issuecomment-2117157419 - heroTag: null, - key: const ValueKey('share-button'), - onPressed: - widget.viewModel.booking != null - ? widget.viewModel.shareBooking.execute - : null, - label: Text(AppLocalization.of(context).shareTrip), - icon: const Icon(Icons.share_outlined), - ), + builder: (context, _) => FloatingActionButton.extended( + // Workaround for https://github.com/flutter/flutter/issues/115358#issuecomment-2117157419 + heroTag: null, + key: const ValueKey('share-button'), + onPressed: widget.viewModel.booking != null + ? widget.viewModel.shareBooking.execute + : null, + label: Text(AppLocalization.of(context).shareTrip), + icon: const Icon(Icons.share_outlined), + ), ), body: ListenableBuilder( // Listen to changes in both commands diff --git a/compass_app/app/lib/ui/core/themes/dimens.dart b/compass_app/app/lib/ui/core/themes/dimens.dart index e7749222399..ea5d101b155 100644 --- a/compass_app/app/lib/ui/core/themes/dimens.dart +++ b/compass_app/app/lib/ui/core/themes/dimens.dart @@ -35,12 +35,11 @@ abstract final class Dimens { static const Dimens mobile = _DimensMobile(); /// Get dimensions definition based on screen size - factory Dimens.of(BuildContext context) => switch (MediaQuery.sizeOf( - context, - ).width) { - > 600 && < 840 => desktop, - _ => mobile, - }; + factory Dimens.of(BuildContext context) => + switch (MediaQuery.sizeOf(context).width) { + > 600 && < 840 => desktop, + _ => mobile, + }; } /// Mobile dimensions diff --git a/compass_app/app/lib/ui/core/ui/custom_checkbox.dart b/compass_app/app/lib/ui/core/ui/custom_checkbox.dart index d08ea6339a2..515e91a3d75 100644 --- a/compass_app/app/lib/ui/core/ui/custom_checkbox.dart +++ b/compass_app/app/lib/ui/core/ui/custom_checkbox.dart @@ -28,10 +28,9 @@ class CustomCheckbox extends StatelessWidget { ), child: Material( borderRadius: BorderRadius.circular(24), - color: - value - ? Theme.of(context).colorScheme.primary - : Colors.transparent, + color: value + ? Theme.of(context).colorScheme.primary + : Colors.transparent, child: SizedBox( width: 24, height: 24, diff --git a/compass_app/app/lib/ui/home/widgets/home_screen.dart b/compass_app/app/lib/ui/home/widgets/home_screen.dart index 39f4dcdafe9..fefe780038f 100644 --- a/compass_app/app/lib/ui/home/widgets/home_screen.dart +++ b/compass_app/app/lib/ui/home/widgets/home_screen.dart @@ -93,31 +93,29 @@ class _HomeScreenState extends State { ), SliverList.builder( itemCount: widget.viewModel.bookings.length, - itemBuilder: - (_, index) => _Booking( - key: ValueKey(widget.viewModel.bookings[index].id), - booking: widget.viewModel.bookings[index], - onTap: - () => context.push( - Routes.bookingWithId( - widget.viewModel.bookings[index].id, - ), - ), - confirmDismiss: (_) async { - // wait for command to complete - await widget.viewModel.deleteBooking.execute( - widget.viewModel.bookings[index].id, - ); - // if command completed successfully, return true - if (widget.viewModel.deleteBooking.completed) { - // removes the dismissable from the list - return true; - } else { - // the dismissable stays in the list - return false; - } - }, + itemBuilder: (_, index) => _Booking( + key: ValueKey(widget.viewModel.bookings[index].id), + booking: widget.viewModel.bookings[index], + onTap: () => context.push( + Routes.bookingWithId( + widget.viewModel.bookings[index].id, ), + ), + confirmDismiss: (_) async { + // wait for command to complete + await widget.viewModel.deleteBooking.execute( + widget.viewModel.bookings[index].id, + ); + // if command completed successfully, return true + if (widget.viewModel.deleteBooking.completed) { + // removes the dismissable from the list + return true; + } else { + // the dismissable stays in the list + return false; + } + }, + ), ), ], ); diff --git a/compass_app/app/lib/ui/home/widgets/home_title.dart b/compass_app/app/lib/ui/home/widgets/home_title.dart index 7086ccdf0bc..165e7ffe507 100644 --- a/compass_app/app/lib/ui/home/widgets/home_title.dart +++ b/compass_app/app/lib/ui/home/widgets/home_title.dart @@ -61,12 +61,11 @@ class _Title extends StatelessWidget { Widget build(BuildContext context) { return ShaderMask( blendMode: BlendMode.srcIn, - shaderCallback: - (bounds) => RadialGradient( - center: Alignment.bottomLeft, - radius: 2, - colors: [Colors.purple.shade700, Colors.purple.shade400], - ).createShader(Rect.fromLTWH(0, 0, bounds.width, bounds.height)), + shaderCallback: (bounds) => RadialGradient( + center: Alignment.bottomLeft, + radius: 2, + colors: [Colors.purple.shade700, Colors.purple.shade400], + ).createShader(Rect.fromLTWH(0, 0, bounds.width, bounds.height)), child: Text( text, style: GoogleFonts.rubik( diff --git a/compass_app/app/lib/ui/results/view_models/results_viewmodel.dart b/compass_app/app/lib/ui/results/view_models/results_viewmodel.dart index 33ba262b351..b5af3dea6dd 100644 --- a/compass_app/app/lib/ui/results/view_models/results_viewmodel.dart +++ b/compass_app/app/lib/ui/results/view_models/results_viewmodel.dart @@ -67,13 +67,12 @@ class ResultsViewModel extends ChangeNotifier { case Ok(): { // If the result is Ok, update the list of destinations - _destinations = - result.value - .where( - (destination) => - destination.continent == _itineraryConfig!.continent, - ) - .toList(); + _destinations = result.value + .where( + (destination) => + destination.continent == _itineraryConfig!.continent, + ) + .toList(); _log.fine('Destinations (${_destinations.length}) loaded'); } case Error(): diff --git a/compass_app/app/lib/ui/results/widgets/result_card.dart b/compass_app/app/lib/ui/results/widgets/result_card.dart index adcdad91a44..463358d8200 100644 --- a/compass_app/app/lib/ui/results/widgets/result_card.dart +++ b/compass_app/app/lib/ui/results/widgets/result_card.dart @@ -42,8 +42,9 @@ class ResultCard extends StatelessWidget { spacing: 4.0, runSpacing: 4.0, direction: Axis.horizontal, - children: - destination.tags.map((e) => TagChip(tag: e)).toList(), + children: destination.tags + .map((e) => TagChip(tag: e)) + .toList(), ), ], ), diff --git a/compass_app/app/lib/ui/results/widgets/results_screen.dart b/compass_app/app/lib/ui/results/widgets/results_screen.dart index 2bfc3d37758..a2b675cb907 100644 --- a/compass_app/app/lib/ui/results/widgets/results_screen.dart +++ b/compass_app/app/lib/ui/results/widgets/results_screen.dart @@ -67,10 +67,9 @@ class _ResultsScreenState extends State { Expanded( child: Center( child: ErrorIndicator( - title: - AppLocalization.of( - context, - ).errorWhileLoadingDestinations, + title: AppLocalization.of( + context, + ).errorWhileLoadingDestinations, label: AppLocalization.of(context).tryAgain, onPressed: widget.viewModel.search.execute, ), diff --git a/compass_app/app/lib/ui/search_form/widgets/search_form_guests.dart b/compass_app/app/lib/ui/search_form/widgets/search_form_guests.dart index 3772c0f85f7..5c4abfacaa0 100644 --- a/compass_app/app/lib/ui/search_form/widgets/search_form_guests.dart +++ b/compass_app/app/lib/ui/search_form/widgets/search_form_guests.dart @@ -75,14 +75,12 @@ class _QuantitySelector extends StatelessWidget { ), ListenableBuilder( listenable: viewModel, - builder: - (context, _) => Text( - viewModel.guests.toString(), - style: - viewModel.guests == 0 - ? Theme.of(context).inputDecorationTheme.hintStyle - : Theme.of(context).textTheme.bodyMedium, - ), + builder: (context, _) => Text( + viewModel.guests.toString(), + style: viewModel.guests == 0 + ? Theme.of(context).inputDecorationTheme.hintStyle + : Theme.of(context).textTheme.bodyMedium, + ), ), InkWell( key: const ValueKey(addGuestsKey), diff --git a/compass_app/app/lib/ui/search_form/widgets/search_form_submit.dart b/compass_app/app/lib/ui/search_form/widgets/search_form_submit.dart index a4c6113a1b5..e6ce6a10416 100644 --- a/compass_app/app/lib/ui/search_form/widgets/search_form_submit.dart +++ b/compass_app/app/lib/ui/search_form/widgets/search_form_submit.dart @@ -65,10 +65,9 @@ class _SearchFormSubmitState extends State { builder: (context, child) { return FilledButton( key: const ValueKey(searchFormSubmitButtonKey), - onPressed: - widget.viewModel.valid - ? widget.viewModel.updateItineraryConfig.execute - : null, + onPressed: widget.viewModel.valid + ? widget.viewModel.updateItineraryConfig.execute + : null, child: child, ); }, diff --git a/compass_app/app/pubspec.yaml b/compass_app/app/pubspec.yaml index 7b988114692..58b078d071b 100644 --- a/compass_app/app/pubspec.yaml +++ b/compass_app/app/pubspec.yaml @@ -3,9 +3,10 @@ description: >- A sample app that helps users build and book itineraries for trips. publish_to: none version: 0.1.0 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: cached_network_image: ^3.4.1 @@ -15,7 +16,7 @@ dependencies: sdk: flutter flutter_svg: ^2.0.16 freezed_annotation: ^2.4.4 - go_router: ^14.6.2 + go_router: ^16.0.0 google_fonts: ^6.2.1 intl: any json_annotation: ^4.9.0 @@ -25,15 +26,16 @@ dependencies: shared_preferences: ^2.3.5 dev_dependencies: + analysis_defaults: + path: ../../analysis_defaults flutter_test: sdk: flutter - flutter_lints: ^5.0.0 mocktail_image_network: ^1.2.0 mocktail: ^1.0.4 integration_test: sdk: flutter build_runner: ^2.4.14 - freezed: ^2.5.7 + freezed: ^3.0.0 json_serializable: ^6.9.0 flutter: diff --git a/compass_app/server/analysis_options.yaml b/compass_app/server/analysis_options.yaml deleted file mode 100644 index dee8927aafe..00000000000 --- a/compass_app/server/analysis_options.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# This file configures the static analysis results for your project (errors, -# warnings, and lints). -# -# This enables the 'recommended' set of lints from `package:lints`. -# This set helps identify many issues that may lead to problems when running -# or consuming Dart code, and enforces writing Dart using a single, idiomatic -# style and format. -# -# If you want a smaller set of lints you can change this to specify -# 'package:lints/core.yaml'. These are just the most critical lints -# (the recommended set includes the core lints). -# The core lints are also what is used by pub.dev for scoring packages. - -include: package:lints/recommended.yaml - -# Uncomment the following section to specify additional rules. - -# linter: -# rules: -# - camel_case_types - -# analyzer: -# exclude: -# - path/to/excluded/files/** - -# For more information about the core and recommended set of lints, see -# https://dart.dev/go/core-lints - -# For additional information about configuring this file, see -# https://dart.dev/guides/language/analysis-options diff --git a/compass_app/server/bin/compass_server.dart b/compass_app/server/bin/compass_server.dart index 05bdfc01133..7f201155291 100644 --- a/compass_app/server/bin/compass_server.dart +++ b/compass_app/server/bin/compass_server.dart @@ -15,13 +15,12 @@ import 'package:shelf/shelf_io.dart'; import 'package:shelf_router/shelf_router.dart'; // Configure routes. -final _router = - Router() - ..get('/continent', continentHandler) - ..mount('/destination', DestinationApi().router.call) - ..mount('/booking', BookingApi().router.call) - ..mount('/user', UserApi().router.call) - ..mount('/login', LoginApi().router.call); +final _router = Router() + ..get('/continent', continentHandler) + ..mount('/destination', DestinationApi().router.call) + ..mount('/booking', BookingApi().router.call) + ..mount('/user', UserApi().router.call) + ..mount('/login', LoginApi().router.call); void main(List args) async { // Use any available host or container IP (usually `0.0.0.0`). diff --git a/compass_app/server/lib/model/activity/activity.freezed.dart b/compass_app/server/lib/model/activity/activity.freezed.dart index b900e74daa5..0c89f888a43 100644 --- a/compass_app/server/lib/model/activity/activity.freezed.dart +++ b/compass_app/server/lib/model/activity/activity.freezed.dart @@ -109,56 +109,46 @@ class _$ActivityCopyWithImpl<$Res, $Val extends Activity> }) { return _then( _value.copyWith( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - description: - null == description - ? _value.description - : description // ignore: cast_nullable_to_non_nullable - as String, - locationName: - null == locationName - ? _value.locationName - : locationName // ignore: cast_nullable_to_non_nullable - as String, - duration: - null == duration - ? _value.duration - : duration // ignore: cast_nullable_to_non_nullable - as int, - timeOfDay: - null == timeOfDay - ? _value.timeOfDay - : timeOfDay // ignore: cast_nullable_to_non_nullable - as TimeOfDay, - familyFriendly: - null == familyFriendly - ? _value.familyFriendly - : familyFriendly // ignore: cast_nullable_to_non_nullable - as bool, - price: - null == price - ? _value.price - : price // ignore: cast_nullable_to_non_nullable - as int, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + description: null == description + ? _value.description + : description // ignore: cast_nullable_to_non_nullable + as String, + locationName: null == locationName + ? _value.locationName + : locationName // ignore: cast_nullable_to_non_nullable + as String, + duration: null == duration + ? _value.duration + : duration // ignore: cast_nullable_to_non_nullable + as int, + timeOfDay: null == timeOfDay + ? _value.timeOfDay + : timeOfDay // ignore: cast_nullable_to_non_nullable + as TimeOfDay, + familyFriendly: null == familyFriendly + ? _value.familyFriendly + : familyFriendly // ignore: cast_nullable_to_non_nullable + as bool, + price: null == price + ? _value.price + : price // ignore: cast_nullable_to_non_nullable + as int, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -215,56 +205,46 @@ class __$$ActivityImplCopyWithImpl<$Res> }) { return _then( _$ActivityImpl( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - description: - null == description - ? _value.description - : description // ignore: cast_nullable_to_non_nullable - as String, - locationName: - null == locationName - ? _value.locationName - : locationName // ignore: cast_nullable_to_non_nullable - as String, - duration: - null == duration - ? _value.duration - : duration // ignore: cast_nullable_to_non_nullable - as int, - timeOfDay: - null == timeOfDay - ? _value.timeOfDay - : timeOfDay // ignore: cast_nullable_to_non_nullable - as TimeOfDay, - familyFriendly: - null == familyFriendly - ? _value.familyFriendly - : familyFriendly // ignore: cast_nullable_to_non_nullable - as bool, - price: - null == price - ? _value.price - : price // ignore: cast_nullable_to_non_nullable - as int, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + description: null == description + ? _value.description + : description // ignore: cast_nullable_to_non_nullable + as String, + locationName: null == locationName + ? _value.locationName + : locationName // ignore: cast_nullable_to_non_nullable + as String, + duration: null == duration + ? _value.duration + : duration // ignore: cast_nullable_to_non_nullable + as int, + timeOfDay: null == timeOfDay + ? _value.timeOfDay + : timeOfDay // ignore: cast_nullable_to_non_nullable + as TimeOfDay, + familyFriendly: null == familyFriendly + ? _value.familyFriendly + : familyFriendly // ignore: cast_nullable_to_non_nullable + as bool, + price: null == price + ? _value.price + : price // ignore: cast_nullable_to_non_nullable + as int, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/server/lib/model/booking/booking.freezed.dart b/compass_app/server/lib/model/booking/booking.freezed.dart index 24c38badb10..5ce4f6c994a 100644 --- a/compass_app/server/lib/model/booking/booking.freezed.dart +++ b/compass_app/server/lib/model/booking/booking.freezed.dart @@ -88,36 +88,30 @@ class _$BookingCopyWithImpl<$Res, $Val extends Booking> }) { return _then( _value.copyWith( - id: - freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - activitiesRef: - null == activitiesRef - ? _value.activitiesRef - : activitiesRef // ignore: cast_nullable_to_non_nullable - as List, + id: freezed == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int?, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + activitiesRef: null == activitiesRef + ? _value.activitiesRef + : activitiesRef // ignore: cast_nullable_to_non_nullable + as List, ) as $Val, ); @@ -165,36 +159,30 @@ class __$$BookingImplCopyWithImpl<$Res> }) { return _then( _$BookingImpl( - id: - freezed == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as int?, - startDate: - null == startDate - ? _value.startDate - : startDate // ignore: cast_nullable_to_non_nullable - as DateTime, - endDate: - null == endDate - ? _value.endDate - : endDate // ignore: cast_nullable_to_non_nullable - as DateTime, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - destinationRef: - null == destinationRef - ? _value.destinationRef - : destinationRef // ignore: cast_nullable_to_non_nullable - as String, - activitiesRef: - null == activitiesRef - ? _value._activitiesRef - : activitiesRef // ignore: cast_nullable_to_non_nullable - as List, + id: freezed == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as int?, + startDate: null == startDate + ? _value.startDate + : startDate // ignore: cast_nullable_to_non_nullable + as DateTime, + endDate: null == endDate + ? _value.endDate + : endDate // ignore: cast_nullable_to_non_nullable + as DateTime, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + destinationRef: null == destinationRef + ? _value.destinationRef + : destinationRef // ignore: cast_nullable_to_non_nullable + as String, + activitiesRef: null == activitiesRef + ? _value._activitiesRef + : activitiesRef // ignore: cast_nullable_to_non_nullable + as List, ), ); } diff --git a/compass_app/server/lib/model/booking/booking.g.dart b/compass_app/server/lib/model/booking/booking.g.dart index 676d95d967b..829d766bf83 100644 --- a/compass_app/server/lib/model/booking/booking.g.dart +++ b/compass_app/server/lib/model/booking/booking.g.dart @@ -13,10 +13,9 @@ _$BookingImpl _$$BookingImplFromJson(Map json) => endDate: DateTime.parse(json['endDate'] as String), name: json['name'] as String, destinationRef: json['destinationRef'] as String, - activitiesRef: - (json['activitiesRef'] as List) - .map((e) => e as String) - .toList(), + activitiesRef: (json['activitiesRef'] as List) + .map((e) => e as String) + .toList(), ); Map _$$BookingImplToJson(_$BookingImpl instance) => diff --git a/compass_app/server/lib/model/continent/continent.freezed.dart b/compass_app/server/lib/model/continent/continent.freezed.dart index cb6688a65f4..6f13817d16b 100644 --- a/compass_app/server/lib/model/continent/continent.freezed.dart +++ b/compass_app/server/lib/model/continent/continent.freezed.dart @@ -62,16 +62,14 @@ class _$ContinentCopyWithImpl<$Res, $Val extends Continent> $Res call({Object? name = null, Object? imageUrl = null}) { return _then( _value.copyWith( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -106,16 +104,14 @@ class __$$ContinentImplCopyWithImpl<$Res> $Res call({Object? name = null, Object? imageUrl = null}) { return _then( _$ContinentImpl( - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/server/lib/model/destination/destination.freezed.dart b/compass_app/server/lib/model/destination/destination.freezed.dart index 30789a9691a..1babb93539a 100644 --- a/compass_app/server/lib/model/destination/destination.freezed.dart +++ b/compass_app/server/lib/model/destination/destination.freezed.dart @@ -95,41 +95,34 @@ class _$DestinationCopyWithImpl<$Res, $Val extends Destination> }) { return _then( _value.copyWith( - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - country: - null == country - ? _value.country - : country // ignore: cast_nullable_to_non_nullable - as String, - continent: - null == continent - ? _value.continent - : continent // ignore: cast_nullable_to_non_nullable - as String, - knownFor: - null == knownFor - ? _value.knownFor - : knownFor // ignore: cast_nullable_to_non_nullable - as String, - tags: - null == tags - ? _value.tags - : tags // ignore: cast_nullable_to_non_nullable - as List, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + country: null == country + ? _value.country + : country // ignore: cast_nullable_to_non_nullable + as String, + continent: null == continent + ? _value.continent + : continent // ignore: cast_nullable_to_non_nullable + as String, + knownFor: null == knownFor + ? _value.knownFor + : knownFor // ignore: cast_nullable_to_non_nullable + as String, + tags: null == tags + ? _value.tags + : tags // ignore: cast_nullable_to_non_nullable + as List, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -180,41 +173,34 @@ class __$$DestinationImplCopyWithImpl<$Res> }) { return _then( _$DestinationImpl( - ref: - null == ref - ? _value.ref - : ref // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - country: - null == country - ? _value.country - : country // ignore: cast_nullable_to_non_nullable - as String, - continent: - null == continent - ? _value.continent - : continent // ignore: cast_nullable_to_non_nullable - as String, - knownFor: - null == knownFor - ? _value.knownFor - : knownFor // ignore: cast_nullable_to_non_nullable - as String, - tags: - null == tags - ? _value._tags - : tags // ignore: cast_nullable_to_non_nullable - as List, - imageUrl: - null == imageUrl - ? _value.imageUrl - : imageUrl // ignore: cast_nullable_to_non_nullable - as String, + ref: null == ref + ? _value.ref + : ref // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + country: null == country + ? _value.country + : country // ignore: cast_nullable_to_non_nullable + as String, + continent: null == continent + ? _value.continent + : continent // ignore: cast_nullable_to_non_nullable + as String, + knownFor: null == knownFor + ? _value.knownFor + : knownFor // ignore: cast_nullable_to_non_nullable + as String, + tags: null == tags + ? _value._tags + : tags // ignore: cast_nullable_to_non_nullable + as List, + imageUrl: null == imageUrl + ? _value.imageUrl + : imageUrl // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/server/lib/model/login_request/login_request.freezed.dart b/compass_app/server/lib/model/login_request/login_request.freezed.dart index a45082a15ab..db4394ebb66 100644 --- a/compass_app/server/lib/model/login_request/login_request.freezed.dart +++ b/compass_app/server/lib/model/login_request/login_request.freezed.dart @@ -64,16 +64,14 @@ class _$LoginRequestCopyWithImpl<$Res, $Val extends LoginRequest> $Res call({Object? email = null, Object? password = null}) { return _then( _value.copyWith( - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - password: - null == password - ? _value.password - : password // ignore: cast_nullable_to_non_nullable - as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + password: null == password + ? _value.password + : password // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -108,16 +106,14 @@ class __$$LoginRequestImplCopyWithImpl<$Res> $Res call({Object? email = null, Object? password = null}) { return _then( _$LoginRequestImpl( - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - password: - null == password - ? _value.password - : password // ignore: cast_nullable_to_non_nullable - as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + password: null == password + ? _value.password + : password // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/server/lib/model/login_response/login_response.freezed.dart b/compass_app/server/lib/model/login_response/login_response.freezed.dart index 49be034ebf2..dfaf762b275 100644 --- a/compass_app/server/lib/model/login_response/login_response.freezed.dart +++ b/compass_app/server/lib/model/login_response/login_response.freezed.dart @@ -64,16 +64,14 @@ class _$LoginResponseCopyWithImpl<$Res, $Val extends LoginResponse> $Res call({Object? token = null, Object? userId = null}) { return _then( _value.copyWith( - token: - null == token - ? _value.token - : token // ignore: cast_nullable_to_non_nullable - as String, - userId: - null == userId - ? _value.userId - : userId // ignore: cast_nullable_to_non_nullable - as String, + token: null == token + ? _value.token + : token // ignore: cast_nullable_to_non_nullable + as String, + userId: null == userId + ? _value.userId + : userId // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -108,16 +106,14 @@ class __$$LoginResponseImplCopyWithImpl<$Res> $Res call({Object? token = null, Object? userId = null}) { return _then( _$LoginResponseImpl( - token: - null == token - ? _value.token - : token // ignore: cast_nullable_to_non_nullable - as String, - userId: - null == userId - ? _value.userId - : userId // ignore: cast_nullable_to_non_nullable - as String, + token: null == token + ? _value.token + : token // ignore: cast_nullable_to_non_nullable + as String, + userId: null == userId + ? _value.userId + : userId // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/server/lib/model/user/user.freezed.dart b/compass_app/server/lib/model/user/user.freezed.dart index ca8a4b81e6d..74e26c7b354 100644 --- a/compass_app/server/lib/model/user/user.freezed.dart +++ b/compass_app/server/lib/model/user/user.freezed.dart @@ -72,26 +72,22 @@ class _$UserCopyWithImpl<$Res, $Val extends User> }) { return _then( _value.copyWith( - id: - null == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - picture: - null == picture - ? _value.picture - : picture // ignore: cast_nullable_to_non_nullable - as String, + id: null == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + picture: null == picture + ? _value.picture + : picture // ignore: cast_nullable_to_non_nullable + as String, ) as $Val, ); @@ -128,26 +124,22 @@ class __$$UserImplCopyWithImpl<$Res> }) { return _then( _$UserImpl( - id: - null == id - ? _value.id - : id // ignore: cast_nullable_to_non_nullable - as String, - name: - null == name - ? _value.name - : name // ignore: cast_nullable_to_non_nullable - as String, - email: - null == email - ? _value.email - : email // ignore: cast_nullable_to_non_nullable - as String, - picture: - null == picture - ? _value.picture - : picture // ignore: cast_nullable_to_non_nullable - as String, + id: null == id + ? _value.id + : id // ignore: cast_nullable_to_non_nullable + as String, + name: null == name + ? _value.name + : name // ignore: cast_nullable_to_non_nullable + as String, + email: null == email + ? _value.email + : email // ignore: cast_nullable_to_non_nullable + as String, + picture: null == picture + ? _value.picture + : picture // ignore: cast_nullable_to_non_nullable + as String, ), ); } diff --git a/compass_app/server/lib/routes/booking.dart b/compass_app/server/lib/routes/booking.dart index 850797bceed..adffc89fcfc 100644 --- a/compass_app/server/lib/routes/booking.dart +++ b/compass_app/server/lib/routes/booking.dart @@ -22,11 +22,10 @@ class BookingApi { BookingApi() { // Create a default booking final destination = Assets.destinations.first; - final activitiesRef = - Assets.activities - .where((activity) => activity.destinationRef == destination.ref) - .map((activity) => activity.ref) - .toList(); + final activitiesRef = Assets.activities + .where((activity) => activity.destinationRef == destination.ref) + .map((activity) => activity.ref) + .toList(); _bookings.add( Booking( id: _sequentialId++, @@ -60,8 +59,9 @@ class BookingApi { // Get a booking by id router.get('/', (Request request, String id) { final bookingId = int.parse(id); - final booking = - _bookings.where((booking) => booking.id == bookingId).firstOrNull; + final booking = _bookings + .where((booking) => booking.id == bookingId) + .firstOrNull; if (booking == null) { return Response.notFound('Invalid id'); @@ -102,8 +102,9 @@ class BookingApi { // Delete booking router.delete('/', (Request request, String id) async { final bookingId = int.parse(id); - final booking = - _bookings.where((booking) => booking.id == bookingId).firstOrNull; + final booking = _bookings + .where((booking) => booking.id == bookingId) + .firstOrNull; if (booking == null) { return Response.notFound('Invalid id'); } diff --git a/compass_app/server/lib/routes/destination.dart b/compass_app/server/lib/routes/destination.dart index c10ea18af8d..7d63ca5773e 100644 --- a/compass_app/server/lib/routes/destination.dart +++ b/compass_app/server/lib/routes/destination.dart @@ -21,10 +21,9 @@ class DestinationApi { }); router.get('//activity', (Request request, String id) { - final list = - Assets.activities - .where((activity) => activity.destinationRef == id) - .toList(); + final list = Assets.activities + .where((activity) => activity.destinationRef == id) + .toList(); return Response.ok( json.encode(list), headers: {'Content-Type': 'application/json'}, diff --git a/compass_app/server/pubspec.yaml b/compass_app/server/pubspec.yaml index 734269df412..07087f8a3c8 100644 --- a/compass_app/server/pubspec.yaml +++ b/compass_app/server/pubspec.yaml @@ -2,9 +2,10 @@ name: compass_server description: A server app using the shelf package and Docker. publish_to: 'none' version: 1.0.0 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: args: ^2.4.0 @@ -15,7 +16,8 @@ dependencies: dev_dependencies: http: ^1.1.0 - lints: ^5.0.0 + analysis_defaults: + path: ../../analysis_defaults test: ^1.24.0 build_runner: ^2.4.11 freezed: ^2.5.7 diff --git a/context_menus/lib/cascading_menu_page.dart b/context_menus/lib/cascading_menu_page.dart index f8d018981fb..173f556ed0d 100644 --- a/context_menus/lib/cascading_menu_page.dart +++ b/context_menus/lib/cascading_menu_page.dart @@ -228,20 +228,22 @@ class _MyCascadingContextMenuState extends State<_MyCascadingContextMenu> { ); widget.onToggleMessageVisibility(); }, - shortcut: const SingleActivator(LogicalKeyboardKey.keyS, control: true), + shortcut: const SingleActivator( + LogicalKeyboardKey.keyS, + control: true, + ), ), // Hides the message, but is only enabled if the message isn't // already hidden. MenuEntry( label: 'Reset', - onPressed: - widget.showingMessage - ? () { - ContextMenuController.removeAny(); - widget.onChangeSelection('Reset'); - widget.onToggleMessageVisibility(); - } - : null, + onPressed: widget.showingMessage + ? () { + ContextMenuController.removeAny(); + widget.onChangeSelection('Reset'); + widget.onToggleMessageVisibility(); + } + : null, shortcut: const SingleActivator(LogicalKeyboardKey.escape), ), MenuEntry( diff --git a/context_menus/lib/custom_buttons_page.dart b/context_menus/lib/custom_buttons_page.dart index 1f8b87ac849..57397843556 100644 --- a/context_menus/lib/custom_buttons_page.dart +++ b/context_menus/lib/custom_buttons_page.dart @@ -52,26 +52,27 @@ class CustomButtonsPage extends StatelessWidget { // Build the default buttons, but make them look custom. // Note that in a real project you may want to build // different buttons depending on the platform. - children: - editableTextState.contextMenuButtonItems.map((buttonItem) { - return CupertinoButton( - borderRadius: null, - color: const Color(0xffaaaa00), - disabledColor: const Color(0xffaaaaff), - onPressed: buttonItem.onPressed, - padding: const EdgeInsets.all(10.0), - pressedOpacity: 0.7, - child: SizedBox( - width: 200.0, - child: Text( - CupertinoTextSelectionToolbarButton.getButtonLabel( - context, - buttonItem, - ), - ), + children: editableTextState.contextMenuButtonItems.map(( + buttonItem, + ) { + return CupertinoButton( + borderRadius: null, + color: const Color(0xffaaaa00), + disabledColor: const Color(0xffaaaaff), + onPressed: buttonItem.onPressed, + padding: const EdgeInsets.all(10.0), + pressedOpacity: 0.7, + child: SizedBox( + width: 200.0, + child: Text( + CupertinoTextSelectionToolbarButton.getButtonLabel( + context, + buttonItem, ), - ); - }).toList(), + ), + ), + ); + }).toList(), ); }, ), diff --git a/context_menus/lib/custom_menu_page.dart b/context_menus/lib/custom_menu_page.dart index 9645391ac69..53deaceacd0 100644 --- a/context_menus/lib/custom_menu_page.dart +++ b/context_menus/lib/custom_menu_page.dart @@ -47,11 +47,10 @@ class CustomMenuPage extends StatelessWidget { contextMenuBuilder: (context, editableTextState) { return _MyContextMenu( anchor: editableTextState.contextMenuAnchors.primaryAnchor, - children: - AdaptiveTextSelectionToolbar.getAdaptiveButtons( - context, - editableTextState.contextMenuButtonItems, - ).toList(), + children: AdaptiveTextSelectionToolbar.getAdaptiveButtons( + context, + editableTextState.contextMenuButtonItems, + ).toList(), ); }, ), diff --git a/context_menus/lib/default_values_page.dart b/context_menus/lib/default_values_page.dart index d3759a63d2a..8063e7618cd 100644 --- a/context_menus/lib/default_values_page.dart +++ b/context_menus/lib/default_values_page.dart @@ -62,7 +62,11 @@ class DefaultValuesPage extends StatelessWidget { 'This example simply shows what happens when contextMenuBuilder is given null, a custom value, or omitted altogether.', ), const SizedBox(height: 40.0), - TextField(maxLines: 2, minLines: 2, controller: _controllerNone), + TextField( + maxLines: 2, + minLines: 2, + controller: _controllerNone, + ), TextField( maxLines: 2, minLines: 2, diff --git a/context_menus/lib/email_button_page.dart b/context_menus/lib/email_button_page.dart index a5c7f35d1de..8a243005e83 100644 --- a/context_menus/lib/email_button_page.dart +++ b/context_menus/lib/email_button_page.dart @@ -22,9 +22,8 @@ class EmailButtonPage extends StatelessWidget { DialogRoute _showDialog(BuildContext context) { return DialogRoute( context: context, - builder: - (context) => - const AlertDialog(title: Text('You clicked send email!')), + builder: (context) => + const AlertDialog(title: Text('You clicked send email!')), ); } @@ -64,7 +63,9 @@ class EmailButtonPage extends StatelessWidget { editableTextState.textEditingValue; final List buttonItems = editableTextState.contextMenuButtonItems; - if (isValidEmail(value.selection.textInside(value.text))) { + if (isValidEmail( + value.selection.textInside(value.text), + )) { buttonItems.insert( 0, ContextMenuButtonItem( diff --git a/context_menus/lib/field_types_page.dart b/context_menus/lib/field_types_page.dart index 2fde4bbee7c..9c68505811b 100644 --- a/context_menus/lib/field_types_page.dart +++ b/context_menus/lib/field_types_page.dart @@ -26,16 +26,16 @@ class FieldTypesPage extends StatelessWidget { "CupertinoTextField can't show Material menus by default. On non-Apple platforms, you'll still see a Cupertino menu here.", ); - final TextEditingController _cupertinoControllerFixed = TextEditingController( + final TextEditingController + _cupertinoControllerFixed = TextEditingController( text: "But CupertinoTextField can be made to adaptively show any menu. You'll see the correct menu for your platform here.", ); - final TextEditingController _cupertinoControllerForced = - TextEditingController( - text: - 'Or forced to always show a specific menu (Material desktop menu).', - ); + final TextEditingController + _cupertinoControllerForced = TextEditingController( + text: 'Or forced to always show a specific menu (Material desktop menu).', + ); final TextEditingController _editableController = TextEditingController( text: @@ -67,7 +67,10 @@ class FieldTypesPage extends StatelessWidget { const SizedBox(height: 20.0), TextField(maxLines: 3, controller: _controller), const SizedBox(height: 60.0), - CupertinoTextField(maxLines: 3, controller: _cupertinoController), + CupertinoTextField( + maxLines: 3, + controller: _cupertinoController, + ), const SizedBox(height: 20.0), CupertinoTextField( maxLines: 3, @@ -85,11 +88,10 @@ class FieldTypesPage extends StatelessWidget { contextMenuBuilder: (context, editableTextState) { return DesktopTextSelectionToolbar( anchor: editableTextState.contextMenuAnchors.primaryAnchor, - children: - AdaptiveTextSelectionToolbar.getAdaptiveButtons( - context, - editableTextState.contextMenuButtonItems, - ).toList(), + children: AdaptiveTextSelectionToolbar.getAdaptiveButtons( + context, + editableTextState.contextMenuButtonItems, + ).toList(), ); }, ), diff --git a/context_menus/lib/full_page.dart b/context_menus/lib/full_page.dart index 9ce311c23d3..626d86823c3 100644 --- a/context_menus/lib/full_page.dart +++ b/context_menus/lib/full_page.dart @@ -107,7 +107,9 @@ class FullPage extends StatelessWidget { editableTextState.textEditingValue; final List buttonItems = editableTextState.contextMenuButtonItems; - if (isValidEmail(value.selection.textInside(value.text))) { + if (isValidEmail( + value.selection.textInside(value.text), + )) { buttonItems.insert( 0, ContextMenuButtonItem( @@ -115,7 +117,10 @@ class FullPage extends StatelessWidget { onPressed: () { ContextMenuController.removeAny(); Navigator.of(context).push( - _showDialog(context, 'You clicked send email'), + _showDialog( + context, + 'You clicked send email', + ), ); }, ), @@ -126,26 +131,25 @@ class FullPage extends StatelessWidget { // Build the default buttons, but make them look crazy. // Note that in a real project you may want to build // different buttons depending on the platform. - children: - buttonItems.map((buttonItem) { - return CupertinoButton( - borderRadius: null, - color: const Color(0xffaaaa00), - disabledColor: const Color(0xffaaaaff), - onPressed: buttonItem.onPressed, - padding: const EdgeInsets.all(10.0), - pressedOpacity: 0.7, - child: SizedBox( - width: 200.0, - child: Text( - CupertinoTextSelectionToolbarButton.getButtonLabel( - context, - buttonItem, - ), - ), + children: buttonItems.map((buttonItem) { + return CupertinoButton( + borderRadius: null, + color: const Color(0xffaaaa00), + disabledColor: const Color(0xffaaaaff), + onPressed: buttonItem.onPressed, + padding: const EdgeInsets.all(10.0), + pressedOpacity: 0.7, + child: SizedBox( + width: 200.0, + child: Text( + CupertinoTextSelectionToolbarButton.getButtonLabel( + context, + buttonItem, ), - ); - }).toList(), + ), + ), + ); + }).toList(), ); }, ), diff --git a/context_menus/lib/global_selection_page.dart b/context_menus/lib/global_selection_page.dart index 35c53b7df20..0d7b43011a5 100644 --- a/context_menus/lib/global_selection_page.dart +++ b/context_menus/lib/global_selection_page.dart @@ -9,7 +9,8 @@ class GlobalSelectionPage extends StatelessWidget { static const String route = 'global-selection'; static const String title = 'Global Selection Example'; - static const String subtitle = 'Context menus in and out of global selection'; + static const String subtitle = + 'Context menus in and out of global selection'; static const String url = '$kCodeUrl/global_selection_page.dart'; final PlatformCallback onChangedPlatform; diff --git a/context_menus/lib/image_page.dart b/context_menus/lib/image_page.dart index c3ebf1cf775..1c33ea6d3e3 100644 --- a/context_menus/lib/image_page.dart +++ b/context_menus/lib/image_page.dart @@ -19,10 +19,9 @@ class ImagePage extends StatelessWidget { DialogRoute _showDialog(BuildContext context) { return DialogRoute( context: context, - builder: - (context) => const AlertDialog( - title: Text('Image saved! (not really though)'), - ), + builder: (context) => const AlertDialog( + title: Text('Image saved! (not really though)'), + ), ); } @@ -49,7 +48,9 @@ class ImagePage extends StatelessWidget { ContextMenuRegion( contextMenuBuilder: (context, offset) { return AdaptiveTextSelectionToolbar.buttonItems( - anchors: TextSelectionToolbarAnchors(primaryAnchor: offset), + anchors: TextSelectionToolbarAnchors( + primaryAnchor: offset, + ), buttonItems: [ ContextMenuButtonItem( onPressed: () { diff --git a/context_menus/lib/main.dart b/context_menus/lib/main.dart index 566534f5b56..e67fa3411ff 100644 --- a/context_menus/lib/main.dart +++ b/context_menus/lib/main.dart @@ -64,36 +64,30 @@ class _MyAppState extends State { initialRoute: '/', routes: { '/': (context) => MyHomePage(onChangedPlatform: onChangedPlatform), - AnywherePage.route: - (context) => AnywherePage(onChangedPlatform: onChangedPlatform), - CustomButtonsPage.route: - (context) => - CustomButtonsPage(onChangedPlatform: onChangedPlatform), - CustomMenuPage.route: - (context) => CustomMenuPage(onChangedPlatform: onChangedPlatform), - ReorderedButtonsPage.route: - (context) => - ReorderedButtonsPage(onChangedPlatform: onChangedPlatform), - EmailButtonPage.route: - (context) => EmailButtonPage(onChangedPlatform: onChangedPlatform), - ImagePage.route: - (context) => ImagePage(onChangedPlatform: onChangedPlatform), - FieldTypesPage.route: - (context) => FieldTypesPage(onChangedPlatform: onChangedPlatform), - FullPage.route: - (context) => FullPage(onChangedPlatform: onChangedPlatform), - ModifiedActionPage.route: - (context) => - ModifiedActionPage(onChangedPlatform: onChangedPlatform), - GlobalSelectionPage.route: - (context) => - GlobalSelectionPage(onChangedPlatform: onChangedPlatform), - DefaultValuesPage.route: - (context) => - DefaultValuesPage(onChangedPlatform: onChangedPlatform), - CascadingMenuPage.route: - (context) => - CascadingMenuPage(onChangedPlatform: onChangedPlatform), + AnywherePage.route: (context) => + AnywherePage(onChangedPlatform: onChangedPlatform), + CustomButtonsPage.route: (context) => + CustomButtonsPage(onChangedPlatform: onChangedPlatform), + CustomMenuPage.route: (context) => + CustomMenuPage(onChangedPlatform: onChangedPlatform), + ReorderedButtonsPage.route: (context) => + ReorderedButtonsPage(onChangedPlatform: onChangedPlatform), + EmailButtonPage.route: (context) => + EmailButtonPage(onChangedPlatform: onChangedPlatform), + ImagePage.route: (context) => + ImagePage(onChangedPlatform: onChangedPlatform), + FieldTypesPage.route: (context) => + FieldTypesPage(onChangedPlatform: onChangedPlatform), + FullPage.route: (context) => + FullPage(onChangedPlatform: onChangedPlatform), + ModifiedActionPage.route: (context) => + ModifiedActionPage(onChangedPlatform: onChangedPlatform), + GlobalSelectionPage.route: (context) => + GlobalSelectionPage(onChangedPlatform: onChangedPlatform), + DefaultValuesPage.route: (context) => + DefaultValuesPage(onChangedPlatform: onChangedPlatform), + CascadingMenuPage.route: (context) => + CascadingMenuPage(onChangedPlatform: onChangedPlatform), }, ); } diff --git a/context_menus/lib/modified_action_page.dart b/context_menus/lib/modified_action_page.dart index b1456861595..68587f0cbd3 100644 --- a/context_menus/lib/modified_action_page.dart +++ b/context_menus/lib/modified_action_page.dart @@ -22,10 +22,9 @@ class ModifiedActionPage extends StatelessWidget { DialogRoute _showDialog(BuildContext context) { return DialogRoute( context: context, - builder: - (context) => const AlertDialog( - title: Text('Copied, but also showed this dialog.'), - ), + builder: (context) => const AlertDialog( + title: Text('Copied, but also showed this dialog.'), + ), ); } diff --git a/context_menus/lib/platform_selector.dart b/context_menus/lib/platform_selector.dart index 5ce1eeafe20..9df3e99d2cd 100644 --- a/context_menus/lib/platform_selector.dart +++ b/context_menus/lib/platform_selector.dart @@ -37,19 +37,18 @@ class _PlatformSelectorState extends State { widget.onChangedPlatform(value); setState(() {}); }, - items: - TargetPlatform.values.map((platform) { - return DropdownMenuItem( - value: platform, - child: Row( - children: [ - if (platform == originaPlatform) - const Icon(Icons.home, color: Color(0xff616161)), - Text(_platformToString(platform)), - ], - ), - ); - }).toList(), + items: TargetPlatform.values.map((platform) { + return DropdownMenuItem( + value: platform, + child: Row( + children: [ + if (platform == originaPlatform) + const Icon(Icons.home, color: Color(0xff616161)), + Text(_platformToString(platform)), + ], + ), + ); + }).toList(), ), ); } diff --git a/context_menus/lib/reordered_buttons_page.dart b/context_menus/lib/reordered_buttons_page.dart index 700bbd2b19d..bc138469fcc 100644 --- a/context_menus/lib/reordered_buttons_page.dart +++ b/context_menus/lib/reordered_buttons_page.dart @@ -11,7 +11,8 @@ class ReorderedButtonsPage extends StatelessWidget { static const String route = 'reordered-buttons'; static const String title = 'Reordered Buttons'; - static const String subtitle = 'The usual buttons, but in a different order.'; + static const String subtitle = + 'The usual buttons, but in a different order.'; static const String url = '$kCodeUrl/reordered_buttons_page.dart'; final PlatformCallback onChangedPlatform; @@ -61,19 +62,25 @@ class ReorderedButtonsPage extends StatelessWidget { in editableTextState.contextMenuButtonItems) { buttonItemsMap[buttonItem.type] = buttonItem; } - final List - reorderedButtonItems = [ - if (buttonItemsMap.containsKey( - ContextMenuButtonType.selectAll, - )) - buttonItemsMap[ContextMenuButtonType.selectAll]!, - if (buttonItemsMap.containsKey(ContextMenuButtonType.paste)) - buttonItemsMap[ContextMenuButtonType.paste]!, - if (buttonItemsMap.containsKey(ContextMenuButtonType.copy)) - buttonItemsMap[ContextMenuButtonType.copy]!, - if (buttonItemsMap.containsKey(ContextMenuButtonType.cut)) - buttonItemsMap[ContextMenuButtonType.cut]!, - ]; + final List reorderedButtonItems = + [ + if (buttonItemsMap.containsKey( + ContextMenuButtonType.selectAll, + )) + buttonItemsMap[ContextMenuButtonType.selectAll]!, + if (buttonItemsMap.containsKey( + ContextMenuButtonType.paste, + )) + buttonItemsMap[ContextMenuButtonType.paste]!, + if (buttonItemsMap.containsKey( + ContextMenuButtonType.copy, + )) + buttonItemsMap[ContextMenuButtonType.copy]!, + if (buttonItemsMap.containsKey( + ContextMenuButtonType.cut, + )) + buttonItemsMap[ContextMenuButtonType.cut]!, + ]; return AdaptiveTextSelectionToolbar.buttonItems( anchors: editableTextState.contextMenuAnchors, buttonItems: reorderedButtonItems, diff --git a/context_menus/pubspec.yaml b/context_menus/pubspec.yaml index 2b66fb6dfa7..1636d6dd090 100644 --- a/context_menus/pubspec.yaml +++ b/context_menus/pubspec.yaml @@ -1,5 +1,7 @@ name: context_menus description: A new Flutter project. +version: 1.0.0+1 +resolution: workspace # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. @@ -17,10 +19,10 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.0.0+1 + environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -32,7 +34,6 @@ dependencies: flutter: sdk: flutter - # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 @@ -44,7 +45,6 @@ dev_dependencies: flutter_test: sdk: flutter - # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/context_menus/test/custom_buttons_page_test.dart b/context_menus/test/custom_buttons_page_test.dart index ea070a753e1..93ddc7196af 100644 --- a/context_menus/test/custom_buttons_page_test.dart +++ b/context_menus/test/custom_buttons_page_test.dart @@ -37,7 +37,10 @@ void main() { expect(find.byType(AdaptiveTextSelectionToolbar), findsOneWidget); switch (defaultTargetPlatform) { case TargetPlatform.iOS: - expect(find.byType(CupertinoTextSelectionToolbarButton), findsNothing); + expect( + find.byType(CupertinoTextSelectionToolbarButton), + findsNothing, + ); expect(find.byType(CupertinoButton), findsNWidgets(2)); case TargetPlatform.macOS: expect(find.byType(CupertinoButton), findsNWidgets(2)); @@ -52,7 +55,10 @@ void main() { case TargetPlatform.linux: case TargetPlatform.windows: expect(find.byType(CupertinoButton), findsNWidgets(1)); - expect(find.byType(DesktopTextSelectionToolbarButton), findsNothing); + expect( + find.byType(DesktopTextSelectionToolbarButton), + findsNothing, + ); } }); } diff --git a/context_menus/test/custom_menu_page_test.dart b/context_menus/test/custom_menu_page_test.dart index 1a98fe096b5..96761cdf760 100644 --- a/context_menus/test/custom_menu_page_test.dart +++ b/context_menus/test/custom_menu_page_test.dart @@ -7,7 +7,9 @@ import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; void main() { - testWidgets('Shows default buttons in a custom context menu', (tester) async { + testWidgets('Shows default buttons in a custom context menu', ( + tester, + ) async { await tester.pumpWidget(const MyApp()); // Navigate to the CustomMenuPage example. @@ -33,7 +35,10 @@ void main() { // A custom context menu is shown, and the buttons are the default ones. expect(find.byType(AdaptiveTextSelectionToolbar), findsNothing); - expect(find.byType(CupertinoAdaptiveTextSelectionToolbar), findsNothing); + expect( + find.byType(CupertinoAdaptiveTextSelectionToolbar), + findsNothing, + ); switch (defaultTargetPlatform) { case TargetPlatform.iOS: expect( @@ -47,7 +52,10 @@ void main() { ); case TargetPlatform.android: case TargetPlatform.fuchsia: - expect(find.byType(TextSelectionToolbarTextButton), findsNWidgets(1)); + expect( + find.byType(TextSelectionToolbarTextButton), + findsNWidgets(1), + ); case TargetPlatform.linux: case TargetPlatform.windows: expect( diff --git a/context_menus/test/default_values_page_test.dart b/context_menus/test/default_values_page_test.dart index 7dfe325f43f..1f6713df264 100644 --- a/context_menus/test/default_values_page_test.dart +++ b/context_menus/test/default_values_page_test.dart @@ -55,7 +55,10 @@ void main() { ); case TargetPlatform.android: case TargetPlatform.fuchsia: - expect(find.byType(TextSelectionToolbarTextButton), findsNWidgets(1)); + expect( + find.byType(TextSelectionToolbarTextButton), + findsNWidgets(1), + ); case TargetPlatform.linux: case TargetPlatform.windows: expect( diff --git a/context_menus/test/email_button_page_test.dart b/context_menus/test/email_button_page_test.dart index 351dbcf8fdf..309556ba99e 100644 --- a/context_menus/test/email_button_page_test.dart +++ b/context_menus/test/email_button_page_test.dart @@ -61,7 +61,10 @@ void main() { ); case TargetPlatform.android: case TargetPlatform.fuchsia: - expect(find.byType(TextSelectionToolbarTextButton), findsNWidgets(3)); + expect( + find.byType(TextSelectionToolbarTextButton), + findsNWidgets(3), + ); case TargetPlatform.linux: case TargetPlatform.windows: expect( @@ -111,7 +114,10 @@ void main() { ); case TargetPlatform.android: case TargetPlatform.fuchsia: - expect(find.byType(TextSelectionToolbarTextButton), findsNWidgets(4)); + expect( + find.byType(TextSelectionToolbarTextButton), + findsNWidgets(4), + ); case TargetPlatform.linux: case TargetPlatform.windows: expect( diff --git a/context_menus/test/field_types_page_test.dart b/context_menus/test/field_types_page_test.dart index fa4ce8cf7e0..3f2beb43698 100644 --- a/context_menus/test/field_types_page_test.dart +++ b/context_menus/test/field_types_page_test.dart @@ -44,7 +44,10 @@ void main() { expect(find.byType(AdaptiveTextSelectionToolbar), findsOneWidget); switch (defaultTargetPlatform) { case TargetPlatform.iOS: - expect(find.byType(CupertinoTextSelectionToolbar), findsOneWidget); + expect( + find.byType(CupertinoTextSelectionToolbar), + findsOneWidget, + ); case TargetPlatform.android: expect(find.byType(TextSelectionToolbar), findsOneWidget); case TargetPlatform.fuchsia: @@ -83,7 +86,10 @@ void main() { case TargetPlatform.iOS: case TargetPlatform.android: case TargetPlatform.fuchsia: - expect(find.byType(CupertinoTextSelectionToolbar), findsOneWidget); + expect( + find.byType(CupertinoTextSelectionToolbar), + findsOneWidget, + ); case TargetPlatform.macOS: case TargetPlatform.linux: case TargetPlatform.windows: @@ -96,7 +102,10 @@ void main() { // Tap the next field to hide the context menu. await tester.tap(find.byType(CupertinoTextField).at(1)); await tester.pumpAndSettle(); - expect(find.byType(CupertinoAdaptiveTextSelectionToolbar), findsNothing); + expect( + find.byType(CupertinoAdaptiveTextSelectionToolbar), + findsNothing, + ); // Right click on the fixed CupertinoTextField. gesture = await tester.startGesture( @@ -113,7 +122,10 @@ void main() { expect(find.byType(AdaptiveTextSelectionToolbar), findsOneWidget); switch (defaultTargetPlatform) { case TargetPlatform.iOS: - expect(find.byType(CupertinoTextSelectionToolbar), findsOneWidget); + expect( + find.byType(CupertinoTextSelectionToolbar), + findsOneWidget, + ); case TargetPlatform.android: expect(find.byType(TextSelectionToolbar), findsOneWidget); case TargetPlatform.fuchsia: @@ -145,7 +157,10 @@ void main() { // The DesktopTextSelectionToolbar is shown for all platforms. expect(find.byType(AdaptiveTextSelectionToolbar), findsNothing); - expect(find.byType(CupertinoAdaptiveTextSelectionToolbar), findsNothing); + expect( + find.byType(CupertinoAdaptiveTextSelectionToolbar), + findsNothing, + ); expect(find.byType(DesktopTextSelectionToolbar), findsOneWidget); // Tap the next field to hide the context menu. @@ -168,7 +183,10 @@ void main() { expect(find.byType(AdaptiveTextSelectionToolbar), findsOneWidget); switch (defaultTargetPlatform) { case TargetPlatform.iOS: - expect(find.byType(CupertinoTextSelectionToolbar), findsOneWidget); + expect( + find.byType(CupertinoTextSelectionToolbar), + findsOneWidget, + ); case TargetPlatform.android: expect(find.byType(TextSelectionToolbar), findsOneWidget); case TargetPlatform.fuchsia: diff --git a/context_menus/test/global_selection_page_test.dart b/context_menus/test/global_selection_page_test.dart index 9f6a52fb88a..619ed3a41b8 100644 --- a/context_menus/test/global_selection_page_test.dart +++ b/context_menus/test/global_selection_page_test.dart @@ -5,43 +5,49 @@ import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; void main() { - testWidgets('Gives correct behavior for all values of contextMenuBuilder', ( - tester, - ) async { - await tester.pumpWidget(const MyApp()); + testWidgets( + 'Gives correct behavior for all values of contextMenuBuilder', + ( + tester, + ) async { + await tester.pumpWidget(const MyApp()); - // Navigate to the GlobalSelectionPage example. - await tester.dragUntilVisible( - find.text(GlobalSelectionPage.title), - find.byType(ListView), - const Offset(0.0, -100.0), - ); - await tester.pumpAndSettle(); - await tester.tap(find.text(GlobalSelectionPage.title)); - await tester.pumpAndSettle(); - expect( - find.descendant( - of: find.byType(AppBar), - matching: find.text(GlobalSelectionPage.title), - ), - findsOneWidget, - ); + // Navigate to the GlobalSelectionPage example. + await tester.dragUntilVisible( + find.text(GlobalSelectionPage.title), + find.byType(ListView), + const Offset(0.0, -100.0), + ); + await tester.pumpAndSettle(); + await tester.tap(find.text(GlobalSelectionPage.title)); + await tester.pumpAndSettle(); + expect( + find.descendant( + of: find.byType(AppBar), + matching: find.text(GlobalSelectionPage.title), + ), + findsOneWidget, + ); - // Right click on the plain Text widget. - TestGesture gesture = await tester.startGesture( - tester.getCenter( - find.descendant(of: find.byType(ListView), matching: find.byType(Text)), - ), - kind: PointerDeviceKind.mouse, - buttons: kSecondaryMouseButton, - ); - await tester.pump(); - await gesture.up(); - await gesture.removePointer(); - await tester.pumpAndSettle(); + // Right click on the plain Text widget. + TestGesture gesture = await tester.startGesture( + tester.getCenter( + find.descendant( + of: find.byType(ListView), + matching: find.byType(Text), + ), + ), + kind: PointerDeviceKind.mouse, + buttons: kSecondaryMouseButton, + ); + await tester.pump(); + await gesture.up(); + await gesture.removePointer(); + await tester.pumpAndSettle(); - // The default context menu is shown with a custom button. - expect(find.byType(AdaptiveTextSelectionToolbar), findsOneWidget); - expect(find.text('Back'), findsOneWidget); - }); + // The default context menu is shown with a custom button. + expect(find.byType(AdaptiveTextSelectionToolbar), findsOneWidget); + expect(find.text('Back'), findsOneWidget); + }, + ); } diff --git a/context_menus/test/utils.dart b/context_menus/test/utils.dart index a54ce5cd7d9..5d4f6e989ff 100644 --- a/context_menus/test/utils.dart +++ b/context_menus/test/utils.dart @@ -40,6 +40,9 @@ List globalize( RenderBox box, ) { return points.map((point) { - return TextSelectionPoint(box.localToGlobal(point.point), point.direction); + return TextSelectionPoint( + box.localToGlobal(point.point), + point.direction, + ); }).toList(); } diff --git a/date_planner/lib/event.dart b/date_planner/lib/event.dart index 7f4f2b5ddf5..3dae0df4f74 100644 --- a/date_planner/lib/event.dart +++ b/date_planner/lib/event.dart @@ -39,7 +39,7 @@ class Event implements Comparable { ); } - updateWith(Event e) { + void updateWith(Event e) { title = e.title; color = e.color; icon = e.icon; diff --git a/date_planner/lib/event_detail.dart b/date_planner/lib/event_detail.dart index 23a386728aa..6407d65015b 100644 --- a/date_planner/lib/event_detail.dart +++ b/date_planner/lib/event_detail.dart @@ -55,9 +55,8 @@ class _EventDetailState extends State { Navigator.of(context) .push( CupertinoPageRoute<(IconData, ColorOptions)?>( - builder: - (_) => - SymbolEditor(event.icon, event.color), + builder: (_) => + SymbolEditor(event.icon, event.color), ), ) .then(((IconData, ColorOptions)? data) { diff --git a/date_planner/lib/event_editor.dart b/date_planner/lib/event_editor.dart index 7172d4b0809..03d0093e3f7 100644 --- a/date_planner/lib/event_editor.dart +++ b/date_planner/lib/event_editor.dart @@ -41,22 +41,21 @@ class _EventEditorState extends State { // // Is this maybe the issue here? // https://github.com/flutter/flutter/issues/91715 - leading: - isNew - ? CupertinoButton( - padding: EdgeInsets.zero, - child: const Text('Cancel'), - onPressed: () => Navigator.pop(context, null), - ) - : CupertinoButton( - padding: EdgeInsets.zero, - onPressed: () { - Navigator.pop(context, event); - }, - child: const Row( - children: [Icon(CupertinoIcons.back), Text('Date Planner')], - ), + leading: isNew + ? CupertinoButton( + padding: EdgeInsets.zero, + child: const Text('Cancel'), + onPressed: () => Navigator.pop(context, null), + ) + : CupertinoButton( + padding: EdgeInsets.zero, + onPressed: () { + Navigator.pop(context, event); + }, + child: const Row( + children: [Icon(CupertinoIcons.back), Text('Date Planner')], ), + ), trailing: CupertinoButton( padding: EdgeInsets.zero, child: Text(isNew ? 'Add' : (isEditing ? 'Done' : 'Edit')), diff --git a/date_planner/lib/event_list.dart b/date_planner/lib/event_list.dart index d430922d938..21155b58027 100644 --- a/date_planner/lib/event_list.dart +++ b/date_planner/lib/event_list.dart @@ -36,11 +36,10 @@ class EventList extends StatelessWidget { // Blocked on https://github.com/flutter/flutter/issues/42560. Event? newEvent = await Navigator.of(context).push( CupertinoPageRoute( - builder: - (_) => EventEditor( - event: Event(title: 'New event'), - isNew: true, - ), + builder: (_) => EventEditor( + event: Event(title: 'New event'), + isNew: true, + ), ), ); @@ -69,17 +68,15 @@ class EventList extends StatelessWidget { EventRow( event: e, onTap: () async { - Event? updatedEvent = await Navigator.of( - context, - ).push( - CupertinoPageRoute( - builder: - (_) => EventEditor( + Event? updatedEvent = await Navigator.of(context) + .push( + CupertinoPageRoute( + builder: (_) => EventEditor( event: e.copy(), isNew: false, ), - ), - ); + ), + ); if (updatedEvent == null) { // The editor passes back null when it deleted // the element. diff --git a/date_planner/lib/event_row.dart b/date_planner/lib/event_row.dart index dbde28b8e6e..1425693a3ac 100644 --- a/date_planner/lib/event_row.dart +++ b/date_planner/lib/event_row.dart @@ -31,9 +31,9 @@ class EventRow extends StatelessWidget { event.isComplete ? const Icon(CupertinoIcons.check_mark) : Text( - '${event.remainingTaskCount}', - style: const TextStyle(color: CupertinoColors.systemGrey), - ), + '${event.remainingTaskCount}', + style: const TextStyle(color: CupertinoColors.systemGrey), + ), const CupertinoListTileChevron(), ], ), diff --git a/date_planner/lib/symbol_editor.dart b/date_planner/lib/symbol_editor.dart index 48e2f1c0baa..a2299aeb476 100644 --- a/date_planner/lib/symbol_editor.dart +++ b/date_planner/lib/symbol_editor.dart @@ -39,11 +39,8 @@ class _SymbolEditorState extends State { CupertinoButton( padding: EdgeInsets.zero, child: const Text('Done'), - onPressed: - () => Navigator.pop(context, ( - _currentIcon, - _currentColor, - )), + onPressed: () => + Navigator.pop(context, (_currentIcon, _currentColor)), ), ], ), diff --git a/date_planner/lib/task_row.dart b/date_planner/lib/task_row.dart index f1535c9d77d..4c817ba07f6 100644 --- a/date_planner/lib/task_row.dart +++ b/date_planner/lib/task_row.dart @@ -29,14 +29,13 @@ class _TaskRowState extends State { return Row( children: [ CupertinoButton( - onPressed: - widget.isEditing - ? () { - setState(() { - widget.task.isCompleted = !widget.task.isCompleted; - }); - } - : null, + onPressed: widget.isEditing + ? () { + setState(() { + widget.task.isCompleted = !widget.task.isCompleted; + }); + } + : null, child: Icon( widget.task.isCompleted ? CupertinoIcons.checkmark_circle_fill @@ -45,15 +44,14 @@ class _TaskRowState extends State { ), ), Expanded( - child: - widget.isEditing - ? CupertinoTextField( - decoration: null, - padding: EdgeInsets.zero, - controller: _taskText, - onChanged: (value) => widget.task.text = value, - ) - : Text(widget.task.text), + child: widget.isEditing + ? CupertinoTextField( + decoration: null, + padding: EdgeInsets.zero, + controller: _taskText, + onChanged: (value) => widget.task.text = value, + ) + : Text(widget.task.text), ), ], ); diff --git a/date_planner/pubspec.yaml b/date_planner/pubspec.yaml index e8a484bce7d..4b9309fa040 100644 --- a/date_planner/pubspec.yaml +++ b/date_planner/pubspec.yaml @@ -2,9 +2,10 @@ name: date_planner description: "An iOS-style date planner." publish_to: 'none' # Remove this line if you wish to publish to pub.dev version: 0.1.0 +resolution: workspace environment: - sdk: ^3.7.0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -15,4 +16,6 @@ dependencies: uuid: dev_dependencies: - flutter_lints: ^5.0.0 + analysis_defaults: + path: ../analysis_defaults + flutter_lints: ^6.0.0 diff --git a/deeplink_store_example/lib/main.dart b/deeplink_store_example/lib/main.dart index 0206c1fe624..2bdafeb62a6 100644 --- a/deeplink_store_example/lib/main.dart +++ b/deeplink_store_example/lib/main.dart @@ -33,14 +33,14 @@ class MyApp extends StatelessWidget { routes: [ GoRoute( path: '/', - builder: (_, __) => const ProductList(), + builder: (_, _) => const ProductList(), routes: [ - GoRoute(path: ':id', builder: (_, __) => const ProductDetails()), + GoRoute(path: ':id', builder: (_, _) => const ProductDetails()), ], ), GoRoute( path: '/category/:category', - builder: (_, __) => const ProductCategoryList(), + builder: (_, _) => const ProductCategoryList(), ), ], ), diff --git a/deeplink_store_example/lib/product_category_list.dart b/deeplink_store_example/lib/product_category_list.dart index 210156d4a31..e794aeef092 100644 --- a/deeplink_store_example/lib/product_category_list.dart +++ b/deeplink_store_example/lib/product_category_list.dart @@ -30,10 +30,9 @@ class ProductCategoryList extends StatelessWidget { value.toString().contains(state.pathParameters['category']!), orElse: () => Category.all, ); - final List children = - ProductsRepository.loadProducts( - category: category, - ).map((Product p) => RowItem(product: p)).toList(); + final List children = ProductsRepository.loadProducts( + category: category, + ).map((Product p) => RowItem(product: p)).toList(); return Scaffold( backgroundColor: Styles.scaffoldBackground, body: CustomScrollView( diff --git a/deeplink_store_example/lib/product_list.dart b/deeplink_store_example/lib/product_list.dart index 50ef37848b3..569c81d3f52 100644 --- a/deeplink_store_example/lib/product_list.dart +++ b/deeplink_store_example/lib/product_list.dart @@ -23,10 +23,9 @@ class ProductList extends StatelessWidget { @override Widget build(BuildContext context) { - final List children = - ProductsRepository.loadProducts() - .map((Product p) => RowItem(product: p)) - .toList(); + final List children = ProductsRepository.loadProducts() + .map((Product p) => RowItem(product: p)) + .toList(); return Scaffold( backgroundColor: Styles.scaffoldBackground, body: CustomScrollView( diff --git a/deeplink_store_example/pubspec.yaml b/deeplink_store_example/pubspec.yaml index 6a485fe5e56..398a213960d 100644 --- a/deeplink_store_example/pubspec.yaml +++ b/deeplink_store_example/pubspec.yaml @@ -1,5 +1,8 @@ name: deeplink_store_example description: A new Flutter project. +version: 1.0.0+1 +resolution: workspace + # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev @@ -16,10 +19,10 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.0.0+1 + environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -31,23 +34,23 @@ dependencies: flutter: sdk: flutter - # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 shrine_images: ^2.0.2 - go_router: ^16.1.0 + go_router: ^16.0.0 dev_dependencies: + analysis_defaults: + path: ../analysis_defaults flutter_test: sdk: flutter - # The "flutter_lints" package below contains a set of recommended lints to # encourage good coding practices. The lint set provided by the package is # activated in the `analysis_options.yaml` file located at the root of your # package. See that file for information about deactivating specific lint # rules and activating additional ones. - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/desktop_photo_search/fluent_ui/lib/main.dart b/desktop_photo_search/fluent_ui/lib/main.dart index 7c57e7f13cc..cd0e164006f 100644 --- a/desktop_photo_search/fluent_ui/lib/main.dart +++ b/desktop_photo_search/fluent_ui/lib/main.dart @@ -24,7 +24,9 @@ void main() { Logger.root.level = Level.ALL; Logger.root.onRecord.listen((rec) { // ignore: avoid_print - print('${rec.loggerName} ${rec.level.name}: ${rec.time}: ${rec.message}'); + print( + '${rec.loggerName} ${rec.level.name}: ${rec.time}: ${rec.message}', + ); }); if (unsplashAccessKey.isEmpty) { @@ -39,8 +41,8 @@ void main() { runApp( ChangeNotifierProvider( - create: - (context) => PhotoSearchModel(Unsplash(accessKey: unsplashAccessKey)), + create: (context) => + PhotoSearchModel(Unsplash(accessKey: unsplashAccessKey)), child: const UnsplashSearchApp(), ), ); @@ -50,7 +52,8 @@ const double windowWidth = 1024; const double windowHeight = 800; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowMinSize(const Size(windowWidth, windowHeight)); } @@ -84,9 +87,9 @@ class UnsplashHomePage extends StatelessWidget { onSelected: () { showDialog( context: context, - builder: - (context) => - PhotoSearchDialog(callback: photoSearchModel.addSearch), + builder: (context) => PhotoSearchDialog( + callback: photoSearchModel.addSearch, + ), ); }, ), @@ -118,12 +121,11 @@ class UnsplashHomePage extends StatelessWidget { return UnsplashNotice( child: Container( color: Colors.white, - child: - photoSearchModel.entries.isNotEmpty - ? const UnsplashSearchContent() - : const Center( - child: Text('Search for Photos using the Search menu'), - ), + child: photoSearchModel.entries.isNotEmpty + ? const UnsplashSearchContent() + : const Center( + child: Text('Search for Photos using the Search menu'), + ), ), ); } diff --git a/desktop_photo_search/fluent_ui/lib/src/model/photo_search_model.dart b/desktop_photo_search/fluent_ui/lib/src/model/photo_search_model.dart index aa792db2872..c3b1878bddd 100644 --- a/desktop_photo_search/fluent_ui/lib/src/model/photo_search_model.dart +++ b/desktop_photo_search/fluent_ui/lib/src/model/photo_search_model.dart @@ -45,5 +45,6 @@ class PhotoSearchModel extends ChangeNotifier { notifyListeners(); } - Future download({required Photo photo}) => _client.download(photo); + Future download({required Photo photo}) => + _client.download(photo); } diff --git a/desktop_photo_search/fluent_ui/lib/src/model/search.g.dart b/desktop_photo_search/fluent_ui/lib/src/model/search.g.dart index 27a09b458e8..578c88f1b3a 100644 --- a/desktop_photo_search/fluent_ui/lib/src/model/search.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/model/search.g.dart @@ -33,7 +33,9 @@ class _$SearchSerializer implements StructuredSerializer { 'results', serializers.serialize( object.results, - specifiedType: const FullType(BuiltList, const [const FullType(Photo)]), + specifiedType: const FullType(BuiltList, const [ + const FullType(Photo), + ]), ), ]; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.dart index f1bd356482c..e7607c0eabb 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.dart @@ -21,7 +21,9 @@ abstract class ApiError implements Built { BuiltList? get errors; String toJson() { - return json.encode(serializers.serializeWith(ApiError.serializer, this)); + return json.encode( + serializers.serializeWith(ApiError.serializer, this), + ); } static ApiError? fromJson(String jsonString) { diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.g.dart index 191309a7b05..acc2aab46e4 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/api_error.g.dart @@ -106,8 +106,9 @@ class _$ApiError extends ApiError { @override String toString() { - return (newBuiltValueToStringHelper(r'ApiError') - ..add('errors', errors)).toString(); + return (newBuiltValueToStringHelper( + r'ApiError', + )..add('errors', errors)).toString(); } } diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/current_user_collections.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/current_user_collections.g.dart index 40b38857dd3..f37c6c9eb1f 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/current_user_collections.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/current_user_collections.g.dart @@ -39,7 +39,10 @@ class _$CurrentUserCollectionsSerializer result ..add('title') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.publishedAt; @@ -47,7 +50,10 @@ class _$CurrentUserCollectionsSerializer result ..add('published_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.updatedAt; @@ -55,7 +61,10 @@ class _$CurrentUserCollectionsSerializer result ..add('updated_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } return result; @@ -134,7 +143,11 @@ class _$CurrentUserCollections extends CurrentUserCollections { this.publishedAt, this.updatedAt, }) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'CurrentUserCollections', 'id'); + BuiltValueNullFieldError.checkNotNull( + id, + r'CurrentUserCollections', + 'id', + ); } @override diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/exif.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/exif.g.dart index b65aa8b30e6..1896c86fe25 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/exif.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/exif.g.dart @@ -31,7 +31,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('make') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.model; @@ -39,7 +42,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('model') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.exposureTime; @@ -47,7 +53,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('exposure_time') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.aperture; @@ -55,7 +64,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('aperture') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.focalLength; @@ -63,14 +75,19 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('focal_length') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.iso; if (value != null) { result ..add('iso') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } return result; } @@ -131,7 +148,10 @@ class _$ExifSerializer implements StructuredSerializer { break; case 'iso': result.iso = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; } @@ -225,7 +245,8 @@ class ExifBuilder implements Builder { String? _exposureTime; String? get exposureTime => _$this._exposureTime; - set exposureTime(String? exposureTime) => _$this._exposureTime = exposureTime; + set exposureTime(String? exposureTime) => + _$this._exposureTime = exposureTime; String? _aperture; String? get aperture => _$this._aperture; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/links.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/links.g.dart index 7327ab571eb..5645e7ec735 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/links.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/links.g.dart @@ -31,7 +31,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('self') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.html; @@ -39,7 +42,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('html') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.download; @@ -47,7 +53,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('download') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.downloadLocation; @@ -55,7 +64,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('download_location') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } return result; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/location.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/location.dart index f79667b1c76..0a7ebacc567 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/location.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/location.dart @@ -27,7 +27,9 @@ abstract class Location implements Built { Position? get position; String toJson() { - return json.encode(serializers.serializeWith(Location.serializer, this)); + return json.encode( + serializers.serializeWith(Location.serializer, this), + ); } static Location? fromJson(String jsonString) { diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/location.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/location.g.dart index 7b0e1d5ed55..7fe7b1ca9fe 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/location.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/location.g.dart @@ -31,7 +31,10 @@ class _$LocationSerializer implements StructuredSerializer { result ..add('city') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.country; @@ -39,7 +42,10 @@ class _$LocationSerializer implements StructuredSerializer { result ..add('country') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.position; @@ -47,7 +53,10 @@ class _$LocationSerializer implements StructuredSerializer { result ..add('position') ..add( - serializers.serialize(value, specifiedType: const FullType(Position)), + serializers.serialize( + value, + specifiedType: const FullType(Position), + ), ); } return result; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/photo.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/photo.g.dart index 854a39489c2..c032a759c29 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/photo.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/photo.g.dart @@ -26,7 +26,10 @@ class _$PhotoSerializer implements StructuredSerializer { }) { final result = [ 'id', - serializers.serialize(object.id, specifiedType: const FullType(String)), + serializers.serialize( + object.id, + specifiedType: const FullType(String), + ), ]; Object? value; value = object.createdAt; @@ -34,7 +37,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('created_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.updatedAt; @@ -42,47 +48,64 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('updated_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.width; if (value != null) { result ..add('width') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.height; if (value != null) { result ..add('height') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.color; if (value != null) { result ..add('color') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.downloads; if (value != null) { result ..add('downloads') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.likes; if (value != null) { result ..add('likes') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.likedByUser; if (value != null) { result ..add('liked_by_user') ..add( - serializers.serialize(value, specifiedType: const FullType(bool)), + serializers.serialize( + value, + specifiedType: const FullType(bool), + ), ); } value = object.description; @@ -90,7 +113,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('description') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.exif; @@ -98,7 +124,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('exif') ..add( - serializers.serialize(value, specifiedType: const FullType(Exif)), + serializers.serialize( + value, + specifiedType: const FullType(Exif), + ), ); } value = object.location; @@ -106,7 +135,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('location') ..add( - serializers.serialize(value, specifiedType: const FullType(Location)), + serializers.serialize( + value, + specifiedType: const FullType(Location), + ), ); } value = object.tags; @@ -140,7 +172,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('urls') ..add( - serializers.serialize(value, specifiedType: const FullType(Urls)), + serializers.serialize( + value, + specifiedType: const FullType(Urls), + ), ); } value = object.links; @@ -148,7 +183,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('links') ..add( - serializers.serialize(value, specifiedType: const FullType(Links)), + serializers.serialize( + value, + specifiedType: const FullType(Links), + ), ); } value = object.user; @@ -156,7 +194,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('user') ..add( - serializers.serialize(value, specifiedType: const FullType(User)), + serializers.serialize( + value, + specifiedType: const FullType(User), + ), ); } return result; @@ -202,12 +243,18 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'width': result.width = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'height': result.height = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'color': @@ -220,12 +267,18 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'downloads': result.downloads = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'likes': result.likes = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'liked_by_user': @@ -246,7 +299,10 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'exif': result.exif.replace( - serializers.deserialize(value, specifiedType: const FullType(Exif))! + serializers.deserialize( + value, + specifiedType: const FullType(Exif), + )! as Exif, ); break; @@ -283,7 +339,10 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'urls': result.urls.replace( - serializers.deserialize(value, specifiedType: const FullType(Urls))! + serializers.deserialize( + value, + specifiedType: const FullType(Urls), + )! as Urls, ); break; @@ -298,7 +357,10 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'user': result.user.replace( - serializers.deserialize(value, specifiedType: const FullType(User))! + serializers.deserialize( + value, + specifiedType: const FullType(User), + )! as User, ); break; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/position.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/position.dart index f09be4dc8d6..b57bb93b25e 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/position.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/position.dart @@ -23,7 +23,9 @@ abstract class Position implements Built { double get longitude; String toJson() { - return json.encode(serializers.serializeWith(Position.serializer, this)); + return json.encode( + serializers.serializeWith(Position.serializer, this), + ); } static Position? fromJson(String jsonString) { diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/position.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/position.g.dart index 3126843db1c..c8619d5c64e 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/position.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/position.g.dart @@ -87,8 +87,16 @@ class _$Position extends Position { (new PositionBuilder()..update(updates))._build(); _$Position._({required this.latitude, required this.longitude}) : super._() { - BuiltValueNullFieldError.checkNotNull(latitude, r'Position', 'latitude'); - BuiltValueNullFieldError.checkNotNull(longitude, r'Position', 'longitude'); + BuiltValueNullFieldError.checkNotNull( + latitude, + r'Position', + 'latitude', + ); + BuiltValueNullFieldError.checkNotNull( + longitude, + r'Position', + 'longitude', + ); } @override diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/search_photos_response.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/search_photos_response.g.dart index e34fd9f1517..65cbb6493a1 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/search_photos_response.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/search_photos_response.g.dart @@ -33,7 +33,9 @@ class _$SearchPhotosResponseSerializer 'results', serializers.serialize( object.results, - specifiedType: const FullType(BuiltList, const [const FullType(Photo)]), + specifiedType: const FullType(BuiltList, const [ + const FullType(Photo), + ]), ), ]; Object? value; @@ -41,13 +43,17 @@ class _$SearchPhotosResponseSerializer if (value != null) { result ..add('total') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.totalPages; if (value != null) { result ..add('total_pages') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } return result; } @@ -68,12 +74,18 @@ class _$SearchPhotosResponseSerializer switch (key) { case 'total': result.total = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'total_pages': result.totalPages = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'results': @@ -106,8 +118,11 @@ class _$SearchPhotosResponse extends SearchPhotosResponse { void Function(SearchPhotosResponseBuilder)? updates, ]) => (new SearchPhotosResponseBuilder()..update(updates))._build(); - _$SearchPhotosResponse._({this.total, this.totalPages, required this.results}) - : super._() { + _$SearchPhotosResponse._({ + this.total, + this.totalPages, + required this.results, + }) : super._() { BuiltValueNullFieldError.checkNotNull( results, r'SearchPhotosResponse', diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/tags.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/tags.g.dart index c0197208437..4a9ac210a8d 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/tags.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/tags.g.dart @@ -98,8 +98,9 @@ class _$Tags extends Tags { @override String toString() { - return (newBuiltValueToStringHelper(r'Tags') - ..add('title', title)).toString(); + return (newBuiltValueToStringHelper( + r'Tags', + )..add('title', title)).toString(); } } @@ -139,7 +140,11 @@ class TagsBuilder implements Builder { final _$result = _$v ?? new _$Tags._( - title: BuiltValueNullFieldError.checkNotNull(title, r'Tags', 'title'), + title: BuiltValueNullFieldError.checkNotNull( + title, + r'Tags', + 'title', + ), ); replace(_$result); return _$result; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/urls.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/urls.g.dart index d35e8705edf..f8f5862cc37 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/urls.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/urls.g.dart @@ -31,7 +31,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('raw') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.full; @@ -39,7 +42,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('full') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.regular; @@ -47,7 +53,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('regular') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.small; @@ -55,7 +64,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('small') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.thumb; @@ -63,7 +75,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('thumb') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } return result; diff --git a/desktop_photo_search/fluent_ui/lib/src/unsplash/user.g.dart b/desktop_photo_search/fluent_ui/lib/src/unsplash/user.g.dart index 5281c3faa82..cf00d103229 100644 --- a/desktop_photo_search/fluent_ui/lib/src/unsplash/user.g.dart +++ b/desktop_photo_search/fluent_ui/lib/src/unsplash/user.g.dart @@ -26,14 +26,20 @@ class _$UserSerializer implements StructuredSerializer { }) { final result = [ 'id', - serializers.serialize(object.id, specifiedType: const FullType(String)), + serializers.serialize( + object.id, + specifiedType: const FullType(String), + ), 'username', serializers.serialize( object.username, specifiedType: const FullType(String), ), 'name', - serializers.serialize(object.name, specifiedType: const FullType(String)), + serializers.serialize( + object.name, + specifiedType: const FullType(String), + ), ]; Object? value; value = object.updatedAt; @@ -41,7 +47,10 @@ class _$UserSerializer implements StructuredSerializer { result ..add('updated_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.portfolioUrl; @@ -49,7 +58,10 @@ class _$UserSerializer implements StructuredSerializer { result ..add('portfolio_url') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.bio; @@ -57,7 +69,10 @@ class _$UserSerializer implements StructuredSerializer { result ..add('bio') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.location; @@ -65,33 +80,45 @@ class _$UserSerializer implements StructuredSerializer { result ..add('location') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.totalLikes; if (value != null) { result ..add('total_likes') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.totalPhotos; if (value != null) { result ..add('total_photos') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.totalCollections; if (value != null) { result ..add('total_collections') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.links; if (value != null) { result ..add('links') ..add( - serializers.serialize(value, specifiedType: const FullType(Links)), + serializers.serialize( + value, + specifiedType: const FullType(Links), + ), ); } return result; @@ -169,17 +196,26 @@ class _$UserSerializer implements StructuredSerializer { break; case 'total_likes': result.totalLikes = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'total_photos': result.totalPhotos = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'total_collections': result.totalCollections = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'links': @@ -324,7 +360,8 @@ class UserBuilder implements Builder { String? _portfolioUrl; String? get portfolioUrl => _$this._portfolioUrl; - set portfolioUrl(String? portfolioUrl) => _$this._portfolioUrl = portfolioUrl; + set portfolioUrl(String? portfolioUrl) => + _$this._portfolioUrl = portfolioUrl; String? _bio; String? get bio => _$this._bio; @@ -399,7 +436,11 @@ class UserBuilder implements Builder { r'User', 'username', ), - name: BuiltValueNullFieldError.checkNotNull(name, r'User', 'name'), + name: BuiltValueNullFieldError.checkNotNull( + name, + r'User', + 'name', + ), portfolioUrl: portfolioUrl, bio: bio, location: location, diff --git a/desktop_photo_search/fluent_ui/lib/src/widgets/photo_details.dart b/desktop_photo_search/fluent_ui/lib/src/widgets/photo_details.dart index 743abdaf378..fc55e98f048 100644 --- a/desktop_photo_search/fluent_ui/lib/src/widgets/photo_details.dart +++ b/desktop_photo_search/fluent_ui/lib/src/widgets/photo_details.dart @@ -39,20 +39,18 @@ class _PhotoDetailsState extends State { uri: Uri.parse( 'https://unsplash.com/@${widget.photo.user!.username}?utm_source=$unsplashAppName&utm_medium=referral', ), - builder: - (context, followLink) => HyperlinkButton( - onPressed: followLink, - child: Text(widget.photo.user!.name), - ), + builder: (context, followLink) => HyperlinkButton( + onPressed: followLink, + child: Text(widget.photo.user!.name), + ), ), const Text('on'), Link( uri: _unsplashHomepage, - builder: - (context, followLink) => HyperlinkButton( - onPressed: followLink, - child: const Text('Unsplash'), - ), + builder: (context, followLink) => HyperlinkButton( + onPressed: followLink, + child: const Text('Unsplash'), + ), ), ], ); diff --git a/desktop_photo_search/fluent_ui/lib/src/widgets/photo_search_dialog.dart b/desktop_photo_search/fluent_ui/lib/src/widgets/photo_search_dialog.dart index 37de11f9e98..fa83f813b81 100644 --- a/desktop_photo_search/fluent_ui/lib/src/widgets/photo_search_dialog.dart +++ b/desktop_photo_search/fluent_ui/lib/src/widgets/photo_search_dialog.dart @@ -48,13 +48,12 @@ class _PhotoSearchDialogState extends State { ), actions: [ FilledButton( - onPressed: - _searchEnabled - ? () { - widget.callback(_controller.text); - Navigator.of(context).pop(); - } - : null, + onPressed: _searchEnabled + ? () { + widget.callback(_controller.text); + Navigator.of(context).pop(); + } + : null, child: const Text('Search'), ), Button( diff --git a/desktop_photo_search/fluent_ui/lib/src/widgets/policy_dialog.dart b/desktop_photo_search/fluent_ui/lib/src/widgets/policy_dialog.dart index a0c91ab8993..add7f3d924d 100644 --- a/desktop_photo_search/fluent_ui/lib/src/widgets/policy_dialog.dart +++ b/desktop_photo_search/fluent_ui/lib/src/widgets/policy_dialog.dart @@ -29,16 +29,15 @@ class PolicyDialog extends StatelessWidget { fontWeight: FontWeight.bold, color: Colors.blue.normal, ), - recognizer: - TapGestureRecognizer() - ..onTap = () async { - final url = Uri.parse( - 'https://policies.google.com/terms', - ); - if (await url_launcher.canLaunchUrl(url)) { - await url_launcher.launchUrl(url); - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + final url = Uri.parse( + 'https://policies.google.com/terms', + ); + if (await url_launcher.canLaunchUrl(url)) { + await url_launcher.launchUrl(url); + } + }, ), ], ), @@ -55,14 +54,13 @@ class PolicyDialog extends StatelessWidget { fontWeight: FontWeight.bold, color: Colors.blue.normal, ), - recognizer: - TapGestureRecognizer() - ..onTap = () async { - final url = Uri.parse('https://unsplash.com/terms'); - if (await url_launcher.canLaunchUrl(url)) { - await url_launcher.launchUrl(url); - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + final url = Uri.parse('https://unsplash.com/terms'); + if (await url_launcher.canLaunchUrl(url)) { + await url_launcher.launchUrl(url); + } + }, ), ], ), diff --git a/desktop_photo_search/fluent_ui/lib/src/widgets/split.dart b/desktop_photo_search/fluent_ui/lib/src/widgets/split.dart index 4790bf8bcaf..a4890e3def3 100644 --- a/desktop_photo_search/fluent_ui/lib/src/widgets/split.dart +++ b/desktop_photo_search/fluent_ui/lib/src/widgets/split.dart @@ -144,7 +144,9 @@ class _SplitState extends State { child: DecoratedBox( decoration: BoxDecoration( color: Theme.of(context).dividerColor, - borderRadius: BorderRadius.circular(Split.dividerMainAxisSize), + borderRadius: BorderRadius.circular( + Split.dividerMainAxisSize, + ), ), child: SizedBox( height: isHorizontal ? 2.0 : Split.dividerMainAxisSize - 2.0, diff --git a/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_notice.dart b/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_notice.dart index ed86de980bc..074eebbdbf9 100644 --- a/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_notice.dart +++ b/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_notice.dart @@ -68,13 +68,12 @@ class _UnsplashDialog extends StatelessWidget { children: [ TextSpan( text: 'Unsplash', - recognizer: - TapGestureRecognizer() - ..onTap = () async { - if (!await launchUrl(_unsplashHomepage)) { - throw 'Could not launch $_unsplashHomepage'; - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + if (!await launchUrl(_unsplashHomepage)) { + throw 'Could not launch $_unsplashHomepage'; + } + }, style: TextStyle(color: Colors.blue), ), const TextSpan( @@ -87,16 +86,18 @@ class _UnsplashDialog extends StatelessWidget { ), TextSpan( text: 'how Unsplash collects and uses data', - recognizer: - TapGestureRecognizer() - ..onTap = () async { - if (!await launchUrl(_unsplashPrivacyPolicy)) { - throw 'Could not launch $_unsplashPrivacyPolicy'; - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + if (!await launchUrl(_unsplashPrivacyPolicy)) { + throw 'Could not launch $_unsplashPrivacyPolicy'; + } + }, style: TextStyle(color: Colors.blue), ), - const TextSpan(text: '.', style: TextStyle(color: Colors.grey)), + const TextSpan( + text: '.', + style: TextStyle(color: Colors.grey), + ), ], ), ), diff --git a/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_search_content.dart b/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_search_content.dart index 85738d3b20c..a805cad43eb 100644 --- a/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_search_content.dart +++ b/desktop_photo_search/fluent_ui/lib/src/widgets/unsplash_search_content.dart @@ -44,34 +44,33 @@ class _UnsplashSearchContentState extends State { ), ), secondChild: Center( - child: - photoSearchModel.selectedPhoto != null - ? PhotoDetails( - photo: photoSearchModel.selectedPhoto!, - onPhotoSave: (photo) async { - final saveLocation = await getSaveLocation( - suggestedName: '${photo.id}.jpg', - acceptedTypeGroups: [ - const XTypeGroup( - label: 'JPG', - extensions: ['jpg'], - mimeTypes: ['image/jpeg'], - ), - ], + child: photoSearchModel.selectedPhoto != null + ? PhotoDetails( + photo: photoSearchModel.selectedPhoto!, + onPhotoSave: (photo) async { + final saveLocation = await getSaveLocation( + suggestedName: '${photo.id}.jpg', + acceptedTypeGroups: [ + const XTypeGroup( + label: 'JPG', + extensions: ['jpg'], + mimeTypes: ['image/jpeg'], + ), + ], + ); + if (saveLocation != null) { + final fileData = await photoSearchModel.download( + photo: photo, + ); + final photoFile = XFile.fromData( + fileData, + mimeType: 'image/jpeg', ); - if (saveLocation != null) { - final fileData = await photoSearchModel.download( - photo: photo, - ); - final photoFile = XFile.fromData( - fileData, - mimeType: 'image/jpeg', - ); - await photoFile.saveTo(saveLocation.path); - } - }, - ) - : Container(), + await photoFile.saveTo(saveLocation.path); + } + }, + ) + : Container(), ), ); } @@ -85,26 +84,25 @@ class _UnsplashSearchContentState extends State { return TreeViewItem( content: Text(searchEntry.query), - children: - searchEntry.photos - .map( - (photo) => TreeViewItem( - content: Semantics( - button: true, - onTap: () => selectPhoto(photo), - label: labelForPhoto(photo), - excludeSemantics: true, - child: GestureDetector( - onTap: () => selectPhoto(photo), - child: Text( - labelForPhoto(photo), - style: const TextStyle(color: Colors.black), - ), - ), + children: searchEntry.photos + .map( + (photo) => TreeViewItem( + content: Semantics( + button: true, + onTap: () => selectPhoto(photo), + label: labelForPhoto(photo), + excludeSemantics: true, + child: GestureDetector( + onTap: () => selectPhoto(photo), + child: Text( + labelForPhoto(photo), + style: const TextStyle(color: Colors.black), ), ), - ) - .toList(), + ), + ), + ) + .toList(), ); } } diff --git a/desktop_photo_search/fluent_ui/pubspec.yaml b/desktop_photo_search/fluent_ui/pubspec.yaml index 1e0ccfe90d5..9863e8bc6b6 100644 --- a/desktop_photo_search/fluent_ui/pubspec.yaml +++ b/desktop_photo_search/fluent_ui/pubspec.yaml @@ -2,9 +2,10 @@ name: desktop_photo_search description: Search for Photos, using the Unsplash API. publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: built_collection: ^5.1.1 diff --git a/desktop_photo_search/material/lib/main.dart b/desktop_photo_search/material/lib/main.dart index 27b42135b1c..319a4f8a987 100644 --- a/desktop_photo_search/material/lib/main.dart +++ b/desktop_photo_search/material/lib/main.dart @@ -24,7 +24,9 @@ void main() { Logger.root.level = Level.ALL; Logger.root.onRecord.listen((rec) { // ignore: avoid_print - print('${rec.loggerName} ${rec.level.name}: ${rec.time}: ${rec.message}'); + print( + '${rec.loggerName} ${rec.level.name}: ${rec.time}: ${rec.message}', + ); }); if (unsplashAccessKey.isEmpty) { @@ -39,8 +41,8 @@ void main() { runApp( ChangeNotifierProvider( - create: - (context) => PhotoSearchModel(Unsplash(accessKey: unsplashAccessKey)), + create: (context) => + PhotoSearchModel(Unsplash(accessKey: unsplashAccessKey)), child: const UnsplashSearchApp(), ), ); @@ -50,7 +52,8 @@ const double windowWidth = 1024; const double windowHeight = 800; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowMinSize(const Size(windowWidth, windowHeight)); } @@ -85,9 +88,9 @@ class UnsplashHomePage extends StatelessWidget { onSelected: () { showDialog( context: context, - builder: - (context) => - PhotoSearchDialog(callback: photoSearchModel.addSearch), + builder: (context) => PhotoSearchDialog( + callback: photoSearchModel.addSearch, + ), ); }, ), @@ -119,20 +122,17 @@ class UnsplashHomePage extends StatelessWidget { return UnsplashNotice( child: Scaffold( appBar: AppBar(title: Text(title)), - body: - photoSearchModel.entries.isNotEmpty - ? const UnsplashSearchContent() - : const Center( - child: Text('Search for Photos using the Fab button'), - ), - floatingActionButton: FloatingActionButton( - onPressed: - () => showDialog( - context: context, - builder: - (context) => - PhotoSearchDialog(callback: photoSearchModel.addSearch), + body: photoSearchModel.entries.isNotEmpty + ? const UnsplashSearchContent() + : const Center( + child: Text('Search for Photos using the Fab button'), ), + floatingActionButton: FloatingActionButton( + onPressed: () => showDialog( + context: context, + builder: (context) => + PhotoSearchDialog(callback: photoSearchModel.addSearch), + ), tooltip: 'Search for a photo', child: const Icon(Icons.search), ), diff --git a/desktop_photo_search/material/lib/src/model/photo_search_model.dart b/desktop_photo_search/material/lib/src/model/photo_search_model.dart index aa792db2872..c3b1878bddd 100644 --- a/desktop_photo_search/material/lib/src/model/photo_search_model.dart +++ b/desktop_photo_search/material/lib/src/model/photo_search_model.dart @@ -45,5 +45,6 @@ class PhotoSearchModel extends ChangeNotifier { notifyListeners(); } - Future download({required Photo photo}) => _client.download(photo); + Future download({required Photo photo}) => + _client.download(photo); } diff --git a/desktop_photo_search/material/lib/src/model/search.g.dart b/desktop_photo_search/material/lib/src/model/search.g.dart index 27a09b458e8..578c88f1b3a 100644 --- a/desktop_photo_search/material/lib/src/model/search.g.dart +++ b/desktop_photo_search/material/lib/src/model/search.g.dart @@ -33,7 +33,9 @@ class _$SearchSerializer implements StructuredSerializer { 'results', serializers.serialize( object.results, - specifiedType: const FullType(BuiltList, const [const FullType(Photo)]), + specifiedType: const FullType(BuiltList, const [ + const FullType(Photo), + ]), ), ]; diff --git a/desktop_photo_search/material/lib/src/unsplash/api_error.dart b/desktop_photo_search/material/lib/src/unsplash/api_error.dart index f1bd356482c..e7607c0eabb 100644 --- a/desktop_photo_search/material/lib/src/unsplash/api_error.dart +++ b/desktop_photo_search/material/lib/src/unsplash/api_error.dart @@ -21,7 +21,9 @@ abstract class ApiError implements Built { BuiltList? get errors; String toJson() { - return json.encode(serializers.serializeWith(ApiError.serializer, this)); + return json.encode( + serializers.serializeWith(ApiError.serializer, this), + ); } static ApiError? fromJson(String jsonString) { diff --git a/desktop_photo_search/material/lib/src/unsplash/api_error.g.dart b/desktop_photo_search/material/lib/src/unsplash/api_error.g.dart index 191309a7b05..acc2aab46e4 100644 --- a/desktop_photo_search/material/lib/src/unsplash/api_error.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/api_error.g.dart @@ -106,8 +106,9 @@ class _$ApiError extends ApiError { @override String toString() { - return (newBuiltValueToStringHelper(r'ApiError') - ..add('errors', errors)).toString(); + return (newBuiltValueToStringHelper( + r'ApiError', + )..add('errors', errors)).toString(); } } diff --git a/desktop_photo_search/material/lib/src/unsplash/current_user_collections.g.dart b/desktop_photo_search/material/lib/src/unsplash/current_user_collections.g.dart index 40b38857dd3..f37c6c9eb1f 100644 --- a/desktop_photo_search/material/lib/src/unsplash/current_user_collections.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/current_user_collections.g.dart @@ -39,7 +39,10 @@ class _$CurrentUserCollectionsSerializer result ..add('title') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.publishedAt; @@ -47,7 +50,10 @@ class _$CurrentUserCollectionsSerializer result ..add('published_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.updatedAt; @@ -55,7 +61,10 @@ class _$CurrentUserCollectionsSerializer result ..add('updated_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } return result; @@ -134,7 +143,11 @@ class _$CurrentUserCollections extends CurrentUserCollections { this.publishedAt, this.updatedAt, }) : super._() { - BuiltValueNullFieldError.checkNotNull(id, r'CurrentUserCollections', 'id'); + BuiltValueNullFieldError.checkNotNull( + id, + r'CurrentUserCollections', + 'id', + ); } @override diff --git a/desktop_photo_search/material/lib/src/unsplash/exif.g.dart b/desktop_photo_search/material/lib/src/unsplash/exif.g.dart index b65aa8b30e6..1896c86fe25 100644 --- a/desktop_photo_search/material/lib/src/unsplash/exif.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/exif.g.dart @@ -31,7 +31,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('make') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.model; @@ -39,7 +42,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('model') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.exposureTime; @@ -47,7 +53,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('exposure_time') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.aperture; @@ -55,7 +64,10 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('aperture') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.focalLength; @@ -63,14 +75,19 @@ class _$ExifSerializer implements StructuredSerializer { result ..add('focal_length') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.iso; if (value != null) { result ..add('iso') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } return result; } @@ -131,7 +148,10 @@ class _$ExifSerializer implements StructuredSerializer { break; case 'iso': result.iso = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; } @@ -225,7 +245,8 @@ class ExifBuilder implements Builder { String? _exposureTime; String? get exposureTime => _$this._exposureTime; - set exposureTime(String? exposureTime) => _$this._exposureTime = exposureTime; + set exposureTime(String? exposureTime) => + _$this._exposureTime = exposureTime; String? _aperture; String? get aperture => _$this._aperture; diff --git a/desktop_photo_search/material/lib/src/unsplash/links.g.dart b/desktop_photo_search/material/lib/src/unsplash/links.g.dart index 7327ab571eb..5645e7ec735 100644 --- a/desktop_photo_search/material/lib/src/unsplash/links.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/links.g.dart @@ -31,7 +31,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('self') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.html; @@ -39,7 +42,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('html') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.download; @@ -47,7 +53,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('download') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.downloadLocation; @@ -55,7 +64,10 @@ class _$LinksSerializer implements StructuredSerializer { result ..add('download_location') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } return result; diff --git a/desktop_photo_search/material/lib/src/unsplash/location.dart b/desktop_photo_search/material/lib/src/unsplash/location.dart index f79667b1c76..0a7ebacc567 100644 --- a/desktop_photo_search/material/lib/src/unsplash/location.dart +++ b/desktop_photo_search/material/lib/src/unsplash/location.dart @@ -27,7 +27,9 @@ abstract class Location implements Built { Position? get position; String toJson() { - return json.encode(serializers.serializeWith(Location.serializer, this)); + return json.encode( + serializers.serializeWith(Location.serializer, this), + ); } static Location? fromJson(String jsonString) { diff --git a/desktop_photo_search/material/lib/src/unsplash/location.g.dart b/desktop_photo_search/material/lib/src/unsplash/location.g.dart index 7b0e1d5ed55..7fe7b1ca9fe 100644 --- a/desktop_photo_search/material/lib/src/unsplash/location.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/location.g.dart @@ -31,7 +31,10 @@ class _$LocationSerializer implements StructuredSerializer { result ..add('city') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.country; @@ -39,7 +42,10 @@ class _$LocationSerializer implements StructuredSerializer { result ..add('country') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.position; @@ -47,7 +53,10 @@ class _$LocationSerializer implements StructuredSerializer { result ..add('position') ..add( - serializers.serialize(value, specifiedType: const FullType(Position)), + serializers.serialize( + value, + specifiedType: const FullType(Position), + ), ); } return result; diff --git a/desktop_photo_search/material/lib/src/unsplash/photo.g.dart b/desktop_photo_search/material/lib/src/unsplash/photo.g.dart index 854a39489c2..c032a759c29 100644 --- a/desktop_photo_search/material/lib/src/unsplash/photo.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/photo.g.dart @@ -26,7 +26,10 @@ class _$PhotoSerializer implements StructuredSerializer { }) { final result = [ 'id', - serializers.serialize(object.id, specifiedType: const FullType(String)), + serializers.serialize( + object.id, + specifiedType: const FullType(String), + ), ]; Object? value; value = object.createdAt; @@ -34,7 +37,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('created_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.updatedAt; @@ -42,47 +48,64 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('updated_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.width; if (value != null) { result ..add('width') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.height; if (value != null) { result ..add('height') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.color; if (value != null) { result ..add('color') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.downloads; if (value != null) { result ..add('downloads') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.likes; if (value != null) { result ..add('likes') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.likedByUser; if (value != null) { result ..add('liked_by_user') ..add( - serializers.serialize(value, specifiedType: const FullType(bool)), + serializers.serialize( + value, + specifiedType: const FullType(bool), + ), ); } value = object.description; @@ -90,7 +113,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('description') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.exif; @@ -98,7 +124,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('exif') ..add( - serializers.serialize(value, specifiedType: const FullType(Exif)), + serializers.serialize( + value, + specifiedType: const FullType(Exif), + ), ); } value = object.location; @@ -106,7 +135,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('location') ..add( - serializers.serialize(value, specifiedType: const FullType(Location)), + serializers.serialize( + value, + specifiedType: const FullType(Location), + ), ); } value = object.tags; @@ -140,7 +172,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('urls') ..add( - serializers.serialize(value, specifiedType: const FullType(Urls)), + serializers.serialize( + value, + specifiedType: const FullType(Urls), + ), ); } value = object.links; @@ -148,7 +183,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('links') ..add( - serializers.serialize(value, specifiedType: const FullType(Links)), + serializers.serialize( + value, + specifiedType: const FullType(Links), + ), ); } value = object.user; @@ -156,7 +194,10 @@ class _$PhotoSerializer implements StructuredSerializer { result ..add('user') ..add( - serializers.serialize(value, specifiedType: const FullType(User)), + serializers.serialize( + value, + specifiedType: const FullType(User), + ), ); } return result; @@ -202,12 +243,18 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'width': result.width = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'height': result.height = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'color': @@ -220,12 +267,18 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'downloads': result.downloads = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'likes': result.likes = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'liked_by_user': @@ -246,7 +299,10 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'exif': result.exif.replace( - serializers.deserialize(value, specifiedType: const FullType(Exif))! + serializers.deserialize( + value, + specifiedType: const FullType(Exif), + )! as Exif, ); break; @@ -283,7 +339,10 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'urls': result.urls.replace( - serializers.deserialize(value, specifiedType: const FullType(Urls))! + serializers.deserialize( + value, + specifiedType: const FullType(Urls), + )! as Urls, ); break; @@ -298,7 +357,10 @@ class _$PhotoSerializer implements StructuredSerializer { break; case 'user': result.user.replace( - serializers.deserialize(value, specifiedType: const FullType(User))! + serializers.deserialize( + value, + specifiedType: const FullType(User), + )! as User, ); break; diff --git a/desktop_photo_search/material/lib/src/unsplash/position.dart b/desktop_photo_search/material/lib/src/unsplash/position.dart index f09be4dc8d6..b57bb93b25e 100644 --- a/desktop_photo_search/material/lib/src/unsplash/position.dart +++ b/desktop_photo_search/material/lib/src/unsplash/position.dart @@ -23,7 +23,9 @@ abstract class Position implements Built { double get longitude; String toJson() { - return json.encode(serializers.serializeWith(Position.serializer, this)); + return json.encode( + serializers.serializeWith(Position.serializer, this), + ); } static Position? fromJson(String jsonString) { diff --git a/desktop_photo_search/material/lib/src/unsplash/position.g.dart b/desktop_photo_search/material/lib/src/unsplash/position.g.dart index 3126843db1c..c8619d5c64e 100644 --- a/desktop_photo_search/material/lib/src/unsplash/position.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/position.g.dart @@ -87,8 +87,16 @@ class _$Position extends Position { (new PositionBuilder()..update(updates))._build(); _$Position._({required this.latitude, required this.longitude}) : super._() { - BuiltValueNullFieldError.checkNotNull(latitude, r'Position', 'latitude'); - BuiltValueNullFieldError.checkNotNull(longitude, r'Position', 'longitude'); + BuiltValueNullFieldError.checkNotNull( + latitude, + r'Position', + 'latitude', + ); + BuiltValueNullFieldError.checkNotNull( + longitude, + r'Position', + 'longitude', + ); } @override diff --git a/desktop_photo_search/material/lib/src/unsplash/search_photos_response.g.dart b/desktop_photo_search/material/lib/src/unsplash/search_photos_response.g.dart index e34fd9f1517..65cbb6493a1 100644 --- a/desktop_photo_search/material/lib/src/unsplash/search_photos_response.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/search_photos_response.g.dart @@ -33,7 +33,9 @@ class _$SearchPhotosResponseSerializer 'results', serializers.serialize( object.results, - specifiedType: const FullType(BuiltList, const [const FullType(Photo)]), + specifiedType: const FullType(BuiltList, const [ + const FullType(Photo), + ]), ), ]; Object? value; @@ -41,13 +43,17 @@ class _$SearchPhotosResponseSerializer if (value != null) { result ..add('total') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.totalPages; if (value != null) { result ..add('total_pages') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } return result; } @@ -68,12 +74,18 @@ class _$SearchPhotosResponseSerializer switch (key) { case 'total': result.total = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'total_pages': result.totalPages = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'results': @@ -106,8 +118,11 @@ class _$SearchPhotosResponse extends SearchPhotosResponse { void Function(SearchPhotosResponseBuilder)? updates, ]) => (new SearchPhotosResponseBuilder()..update(updates))._build(); - _$SearchPhotosResponse._({this.total, this.totalPages, required this.results}) - : super._() { + _$SearchPhotosResponse._({ + this.total, + this.totalPages, + required this.results, + }) : super._() { BuiltValueNullFieldError.checkNotNull( results, r'SearchPhotosResponse', diff --git a/desktop_photo_search/material/lib/src/unsplash/tags.g.dart b/desktop_photo_search/material/lib/src/unsplash/tags.g.dart index c0197208437..4a9ac210a8d 100644 --- a/desktop_photo_search/material/lib/src/unsplash/tags.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/tags.g.dart @@ -98,8 +98,9 @@ class _$Tags extends Tags { @override String toString() { - return (newBuiltValueToStringHelper(r'Tags') - ..add('title', title)).toString(); + return (newBuiltValueToStringHelper( + r'Tags', + )..add('title', title)).toString(); } } @@ -139,7 +140,11 @@ class TagsBuilder implements Builder { final _$result = _$v ?? new _$Tags._( - title: BuiltValueNullFieldError.checkNotNull(title, r'Tags', 'title'), + title: BuiltValueNullFieldError.checkNotNull( + title, + r'Tags', + 'title', + ), ); replace(_$result); return _$result; diff --git a/desktop_photo_search/material/lib/src/unsplash/urls.g.dart b/desktop_photo_search/material/lib/src/unsplash/urls.g.dart index d35e8705edf..f8f5862cc37 100644 --- a/desktop_photo_search/material/lib/src/unsplash/urls.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/urls.g.dart @@ -31,7 +31,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('raw') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.full; @@ -39,7 +42,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('full') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.regular; @@ -47,7 +53,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('regular') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.small; @@ -55,7 +64,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('small') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.thumb; @@ -63,7 +75,10 @@ class _$UrlsSerializer implements StructuredSerializer { result ..add('thumb') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } return result; diff --git a/desktop_photo_search/material/lib/src/unsplash/user.g.dart b/desktop_photo_search/material/lib/src/unsplash/user.g.dart index 5281c3faa82..cf00d103229 100644 --- a/desktop_photo_search/material/lib/src/unsplash/user.g.dart +++ b/desktop_photo_search/material/lib/src/unsplash/user.g.dart @@ -26,14 +26,20 @@ class _$UserSerializer implements StructuredSerializer { }) { final result = [ 'id', - serializers.serialize(object.id, specifiedType: const FullType(String)), + serializers.serialize( + object.id, + specifiedType: const FullType(String), + ), 'username', serializers.serialize( object.username, specifiedType: const FullType(String), ), 'name', - serializers.serialize(object.name, specifiedType: const FullType(String)), + serializers.serialize( + object.name, + specifiedType: const FullType(String), + ), ]; Object? value; value = object.updatedAt; @@ -41,7 +47,10 @@ class _$UserSerializer implements StructuredSerializer { result ..add('updated_at') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.portfolioUrl; @@ -49,7 +58,10 @@ class _$UserSerializer implements StructuredSerializer { result ..add('portfolio_url') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.bio; @@ -57,7 +69,10 @@ class _$UserSerializer implements StructuredSerializer { result ..add('bio') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.location; @@ -65,33 +80,45 @@ class _$UserSerializer implements StructuredSerializer { result ..add('location') ..add( - serializers.serialize(value, specifiedType: const FullType(String)), + serializers.serialize( + value, + specifiedType: const FullType(String), + ), ); } value = object.totalLikes; if (value != null) { result ..add('total_likes') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.totalPhotos; if (value != null) { result ..add('total_photos') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.totalCollections; if (value != null) { result ..add('total_collections') - ..add(serializers.serialize(value, specifiedType: const FullType(int))); + ..add( + serializers.serialize(value, specifiedType: const FullType(int)), + ); } value = object.links; if (value != null) { result ..add('links') ..add( - serializers.serialize(value, specifiedType: const FullType(Links)), + serializers.serialize( + value, + specifiedType: const FullType(Links), + ), ); } return result; @@ -169,17 +196,26 @@ class _$UserSerializer implements StructuredSerializer { break; case 'total_likes': result.totalLikes = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'total_photos': result.totalPhotos = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'total_collections': result.totalCollections = - serializers.deserialize(value, specifiedType: const FullType(int)) + serializers.deserialize( + value, + specifiedType: const FullType(int), + ) as int?; break; case 'links': @@ -324,7 +360,8 @@ class UserBuilder implements Builder { String? _portfolioUrl; String? get portfolioUrl => _$this._portfolioUrl; - set portfolioUrl(String? portfolioUrl) => _$this._portfolioUrl = portfolioUrl; + set portfolioUrl(String? portfolioUrl) => + _$this._portfolioUrl = portfolioUrl; String? _bio; String? get bio => _$this._bio; @@ -399,7 +436,11 @@ class UserBuilder implements Builder { r'User', 'username', ), - name: BuiltValueNullFieldError.checkNotNull(name, r'User', 'name'), + name: BuiltValueNullFieldError.checkNotNull( + name, + r'User', + 'name', + ), portfolioUrl: portfolioUrl, bio: bio, location: location, diff --git a/desktop_photo_search/material/lib/src/widgets/photo_details.dart b/desktop_photo_search/material/lib/src/widgets/photo_details.dart index 2da4eb311df..96b190630b1 100644 --- a/desktop_photo_search/material/lib/src/widgets/photo_details.dart +++ b/desktop_photo_search/material/lib/src/widgets/photo_details.dart @@ -37,20 +37,18 @@ class _PhotoDetailsState extends State { uri: Uri.parse( 'https://unsplash.com/@${widget.photo.user!.username}?utm_source=$unsplashAppName&utm_medium=referral', ), - builder: - (context, followLink) => TextButton( - onPressed: followLink, - child: Text(widget.photo.user!.name), - ), + builder: (context, followLink) => TextButton( + onPressed: followLink, + child: Text(widget.photo.user!.name), + ), ), const Text(' on '), Link( uri: _unsplashHomepage, - builder: - (context, followLink) => TextButton( - onPressed: followLink, - child: const Text('Unsplash'), - ), + builder: (context, followLink) => TextButton( + onPressed: followLink, + child: const Text('Unsplash'), + ), ), ], ); diff --git a/desktop_photo_search/material/lib/src/widgets/photo_search_dialog.dart b/desktop_photo_search/material/lib/src/widgets/photo_search_dialog.dart index 28aee440a6b..28cd62e6470 100644 --- a/desktop_photo_search/material/lib/src/widgets/photo_search_dialog.dart +++ b/desktop_photo_search/material/lib/src/widgets/photo_search_dialog.dart @@ -55,13 +55,12 @@ class _PhotoSearchDialogState extends State { child: const Text('CANCEL'), ), TextButton( - onPressed: - _searchEnabled - ? () { - widget.callback(_controller.text); - Navigator.of(context).pop(); - } - : null, + onPressed: _searchEnabled + ? () { + widget.callback(_controller.text); + Navigator.of(context).pop(); + } + : null, child: const Text('SEARCH'), ), ], diff --git a/desktop_photo_search/material/lib/src/widgets/policy_dialog.dart b/desktop_photo_search/material/lib/src/widgets/policy_dialog.dart index dfc1ca73839..792b7526dea 100644 --- a/desktop_photo_search/material/lib/src/widgets/policy_dialog.dart +++ b/desktop_photo_search/material/lib/src/widgets/policy_dialog.dart @@ -29,16 +29,15 @@ class PolicyDialog extends StatelessWidget { fontWeight: FontWeight.bold, color: Colors.lightBlue, ), - recognizer: - TapGestureRecognizer() - ..onTap = () async { - final url = Uri.parse( - 'https://policies.google.com/terms', - ); - if (await url_launcher.canLaunchUrl(url)) { - await url_launcher.launchUrl(url); - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + final url = Uri.parse( + 'https://policies.google.com/terms', + ); + if (await url_launcher.canLaunchUrl(url)) { + await url_launcher.launchUrl(url); + } + }, ), ], ), @@ -55,14 +54,13 @@ class PolicyDialog extends StatelessWidget { fontWeight: FontWeight.bold, color: Colors.lightBlue, ), - recognizer: - TapGestureRecognizer() - ..onTap = () async { - final url = Uri.parse('https://unsplash.com/terms'); - if (await url_launcher.canLaunchUrl(url)) { - await url_launcher.launchUrl(url); - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + final url = Uri.parse('https://unsplash.com/terms'); + if (await url_launcher.canLaunchUrl(url)) { + await url_launcher.launchUrl(url); + } + }, ), ], ), diff --git a/desktop_photo_search/material/lib/src/widgets/split.dart b/desktop_photo_search/material/lib/src/widgets/split.dart index 4790bf8bcaf..a4890e3def3 100644 --- a/desktop_photo_search/material/lib/src/widgets/split.dart +++ b/desktop_photo_search/material/lib/src/widgets/split.dart @@ -144,7 +144,9 @@ class _SplitState extends State { child: DecoratedBox( decoration: BoxDecoration( color: Theme.of(context).dividerColor, - borderRadius: BorderRadius.circular(Split.dividerMainAxisSize), + borderRadius: BorderRadius.circular( + Split.dividerMainAxisSize, + ), ), child: SizedBox( height: isHorizontal ? 2.0 : Split.dividerMainAxisSize - 2.0, diff --git a/desktop_photo_search/material/lib/src/widgets/unsplash_notice.dart b/desktop_photo_search/material/lib/src/widgets/unsplash_notice.dart index 3845ba0e903..22e2c46aaf3 100644 --- a/desktop_photo_search/material/lib/src/widgets/unsplash_notice.dart +++ b/desktop_photo_search/material/lib/src/widgets/unsplash_notice.dart @@ -69,13 +69,12 @@ class _UnsplashDialog extends StatelessWidget { children: [ TextSpan( text: 'Unsplash', - recognizer: - TapGestureRecognizer() - ..onTap = () async { - if (!await launchUrl(_unsplashHomepage)) { - throw 'Could not launch $_unsplashHomepage'; - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + if (!await launchUrl(_unsplashHomepage)) { + throw 'Could not launch $_unsplashHomepage'; + } + }, style: const TextStyle(color: Colors.blue), ), const TextSpan( @@ -88,16 +87,18 @@ class _UnsplashDialog extends StatelessWidget { ), TextSpan( text: 'how Unsplash collects and uses data', - recognizer: - TapGestureRecognizer() - ..onTap = () async { - if (!await launchUrl(_unsplashPrivacyPolicy)) { - throw 'Could not launch $_unsplashPrivacyPolicy'; - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + if (!await launchUrl(_unsplashPrivacyPolicy)) { + throw 'Could not launch $_unsplashPrivacyPolicy'; + } + }, style: const TextStyle(color: Colors.blue), ), - const TextSpan(text: '.', style: TextStyle(color: Colors.grey)), + const TextSpan( + text: '.', + style: TextStyle(color: Colors.grey), + ), ], ), ), diff --git a/desktop_photo_search/material/lib/src/widgets/unsplash_search_content.dart b/desktop_photo_search/material/lib/src/widgets/unsplash_search_content.dart index ac74dd53818..93e181462a2 100644 --- a/desktop_photo_search/material/lib/src/widgets/unsplash_search_content.dart +++ b/desktop_photo_search/material/lib/src/widgets/unsplash_search_content.dart @@ -46,34 +46,33 @@ class _UnsplashSearchContentState extends State { ), ), secondChild: Center( - child: - photoSearchModel.selectedPhoto != null - ? PhotoDetails( - photo: photoSearchModel.selectedPhoto!, - onPhotoSave: (photo) async { - final saveLocation = await getSaveLocation( - suggestedName: '${photo.id}.jpg', - acceptedTypeGroups: [ - const XTypeGroup( - label: 'JPG', - extensions: ['jpg'], - mimeTypes: ['image/jpeg'], - ), - ], + child: photoSearchModel.selectedPhoto != null + ? PhotoDetails( + photo: photoSearchModel.selectedPhoto!, + onPhotoSave: (photo) async { + final saveLocation = await getSaveLocation( + suggestedName: '${photo.id}.jpg', + acceptedTypeGroups: [ + const XTypeGroup( + label: 'JPG', + extensions: ['jpg'], + mimeTypes: ['image/jpeg'], + ), + ], + ); + if (saveLocation != null) { + final fileData = await photoSearchModel.download( + photo: photo, + ); + final photoFile = XFile.fromData( + fileData, + mimeType: 'image/jpeg', ); - if (saveLocation != null) { - final fileData = await photoSearchModel.download( - photo: photo, - ); - final photoFile = XFile.fromData( - fileData, - mimeType: 'image/jpeg', - ); - await photoFile.saveTo(saveLocation.path); - } - }, - ) - : Container(), + await photoFile.saveTo(saveLocation.path); + } + }, + ) + : Container(), ), ); } @@ -87,28 +86,27 @@ class _UnsplashSearchContentState extends State { return TreeNode( content: Expanded(child: Text(searchEntry.query)), - children: - searchEntry.photos - .map( - (photo) => TreeNode( - content: Expanded( - child: Semantics( - button: true, - onTap: () => selectPhoto(photo), - label: labelForPhoto(photo), - excludeSemantics: true, - child: InkWell( - onTap: () => selectPhoto(photo), - child: Padding( - padding: const EdgeInsets.all(12), - child: Text(labelForPhoto(photo)), - ), - ), + children: searchEntry.photos + .map( + (photo) => TreeNode( + content: Expanded( + child: Semantics( + button: true, + onTap: () => selectPhoto(photo), + label: labelForPhoto(photo), + excludeSemantics: true, + child: InkWell( + onTap: () => selectPhoto(photo), + child: Padding( + padding: const EdgeInsets.all(12), + child: Text(labelForPhoto(photo)), ), ), ), - ) - .toList(), + ), + ), + ) + .toList(), ); } } diff --git a/desktop_photo_search/material/pubspec.yaml b/desktop_photo_search/material/pubspec.yaml index 00ab300d5cc..5a46a857e53 100644 --- a/desktop_photo_search/material/pubspec.yaml +++ b/desktop_photo_search/material/pubspec.yaml @@ -1,10 +1,11 @@ -name: desktop_photo_search +name: desktop_photo_search_material description: Search for Photos, using the Unsplash API. publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: built_collection: ^5.1.1 @@ -20,7 +21,6 @@ dependencies: git: url: https://github.com/google/flutter-desktop-embedding.git path: plugins/menubar - ref: 6c66ad23ee79749f30a8eece542cf54eaf157ed8 provider: ^6.0.5 transparent_image: ^2.0.1 url_launcher: ^6.1.12 @@ -29,7 +29,6 @@ dependencies: git: url: https://github.com/google/flutter-desktop-embedding.git path: plugins/window_size - ref: 6c66ad23ee79749f30a8eece542cf54eaf157ed8 dev_dependencies: analysis_defaults: diff --git a/desktop_photo_search/material/test/unsplash_test.dart b/desktop_photo_search/material/test/unsplash_test.dart index 5d0d5bd2a16..c276c929340 100644 --- a/desktop_photo_search/material/test/unsplash_test.dart +++ b/desktop_photo_search/material/test/unsplash_test.dart @@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -import 'package:desktop_photo_search/src/unsplash/photo.dart'; -import 'package:desktop_photo_search/src/unsplash/search_photos_response.dart'; -import 'package:desktop_photo_search/src/unsplash/unsplash.dart'; -import 'package:desktop_photo_search/src/unsplash/user.dart'; +import 'package:desktop_photo_search_material/src/unsplash/photo.dart'; +import 'package:desktop_photo_search_material/src/unsplash/search_photos_response.dart'; +import 'package:desktop_photo_search_material/src/unsplash/unsplash.dart'; +import 'package:desktop_photo_search_material/src/unsplash/user.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:http/http.dart'; import 'package:http/testing.dart'; diff --git a/desktop_photo_search/material/test/widget_test.dart b/desktop_photo_search/material/test/widget_test.dart index d169c146c5c..26f7d607c85 100644 --- a/desktop_photo_search/material/test/widget_test.dart +++ b/desktop_photo_search/material/test/widget_test.dart @@ -4,10 +4,10 @@ import 'dart:typed_data'; -import 'package:desktop_photo_search/src/model/photo_search_model.dart'; -import 'package:desktop_photo_search/src/unsplash/photo.dart'; -import 'package:desktop_photo_search/src/unsplash/search_photos_response.dart'; -import 'package:desktop_photo_search/src/unsplash/unsplash.dart'; +import 'package:desktop_photo_search_material/src/model/photo_search_model.dart'; +import 'package:desktop_photo_search_material/src/unsplash/photo.dart'; +import 'package:desktop_photo_search_material/src/unsplash/search_photos_response.dart'; +import 'package:desktop_photo_search_material/src/unsplash/unsplash.dart'; import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:provider/provider.dart'; diff --git a/devtools_options.yaml b/devtools_options.yaml new file mode 100644 index 00000000000..fa0b357c4f4 --- /dev/null +++ b/devtools_options.yaml @@ -0,0 +1,3 @@ +description: This file stores settings for Dart & Flutter DevTools. +documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states +extensions: diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000000..c0223c7b001 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,13 @@ + + + + + Redirecting... + + + + +

Redirecting...

+

If you are not redirected automatically, follow this link to the Flutter learning resources.

+ + diff --git a/dynamic_theme/lib/main.dart b/dynamic_theme/lib/main.dart index 37c4292e18e..b61f2855bc6 100644 --- a/dynamic_theme/lib/main.dart +++ b/dynamic_theme/lib/main.dart @@ -266,30 +266,29 @@ class _ExampleState extends State { final reversed = messages.value.reversed; return Scaffold( appBar: AppBar(title: Text(widget.title)), - body: - messages.value.isEmpty - ? const Center( - child: Padding( - padding: EdgeInsets.all(32.0), - child: Text( - 'Start changing the theme! Try typing ' - 'in requests like "Make the colors darker" or "Make the ' - 'font larger" and see what happens.', - ), + body: messages.value.isEmpty + ? const Center( + child: Padding( + padding: EdgeInsets.all(32.0), + child: Text( + 'Start changing the theme! Try typing ' + 'in requests like "Make the colors darker" or "Make the ' + 'font larger" and see what happens.', ), - ) - : ListView.builder( - padding: const EdgeInsets.all(8), - reverse: true, - itemCount: reversed.length, - itemBuilder: (context, index) { - final (sender, message) = reversed.elementAt(index); - return MessageWidget( - isFromUser: sender == Sender.user, - text: message, - ); - }, ), + ) + : ListView.builder( + padding: const EdgeInsets.all(8), + reverse: true, + itemCount: reversed.length, + itemBuilder: (context, index) { + final (sender, message) = reversed.elementAt(index); + return MessageWidget( + isFromUser: sender == Sender.user, + text: message, + ); + }, + ), bottomNavigationBar: BottomAppBar( padding: const EdgeInsets.all(8), child: Row( diff --git a/dynamic_theme/lib/widgets/api_key_widget.dart b/dynamic_theme/lib/widgets/api_key_widget.dart index 002d35f720e..341d079986a 100644 --- a/dynamic_theme/lib/widgets/api_key_widget.dart +++ b/dynamic_theme/lib/widgets/api_key_widget.dart @@ -44,11 +44,10 @@ class ApiKeyWidget extends StatelessWidget { Link( uri: Uri.https('aistudio.google.com', '/app/apikey'), target: LinkTarget.blank, - builder: - (context, followLink) => TextButton( - onPressed: followLink, - child: const Text('Get an API Key'), - ), + builder: (context, followLink) => TextButton( + onPressed: followLink, + child: const Text('Get an API Key'), + ), ), ], ), diff --git a/dynamic_theme/lib/widgets/message_widget.dart b/dynamic_theme/lib/widgets/message_widget.dart index 95dae91029a..74b45df1a8c 100644 --- a/dynamic_theme/lib/widgets/message_widget.dart +++ b/dynamic_theme/lib/widgets/message_widget.dart @@ -30,17 +30,17 @@ class MessageWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Row( - mainAxisAlignment: - isFromUser ? MainAxisAlignment.end : MainAxisAlignment.start, + mainAxisAlignment: isFromUser + ? MainAxisAlignment.end + : MainAxisAlignment.start, children: [ Flexible( child: Container( constraints: const BoxConstraints(maxWidth: 520), decoration: BoxDecoration( - color: - isFromUser - ? Theme.of(context).colorScheme.primaryContainer - : Theme.of(context).colorScheme.surfaceContainerHighest, + color: isFromUser + ? Theme.of(context).colorScheme.primaryContainer + : Theme.of(context).colorScheme.surfaceContainerHighest, borderRadius: BorderRadius.circular(18), ), padding: const EdgeInsets.symmetric(vertical: 15, horizontal: 20), diff --git a/dynamic_theme/pubspec.yaml b/dynamic_theme/pubspec.yaml index d3e29bfdf39..97d4a955fec 100644 --- a/dynamic_theme/pubspec.yaml +++ b/dynamic_theme/pubspec.yaml @@ -2,8 +2,9 @@ name: dynamic_theme description: "Sample app for the google_generative_ai package" publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -13,9 +14,11 @@ dependencies: url_launcher: ^6.2.6 dev_dependencies: + analysis_defaults: + path: ../analysis_defaults flutter_test: sdk: flutter - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 flutter: uses-material-design: true diff --git a/experimental/README.md b/experimental/README.md index 801e2042d6b..320abf4d8bb 100644 --- a/experimental/README.md +++ b/experimental/README.md @@ -1,7 +1,6 @@ -# Deprecation warning +# Deprecated -The `experimental` directory will be retired with the release of Flutter 3.32, -tentatively scheduled for May 2025. At that time, remaining samples will be deleted. +The `experimental` directory has been deprecated. All samples within have been deleted or moved to [github.com/flutter/demos][] --- diff --git a/flutter_maps_firestore/.gitignore b/flutter_maps_firestore/.gitignore deleted file mode 100644 index 39022f405c4..00000000000 --- a/flutter_maps_firestore/.gitignore +++ /dev/null @@ -1,77 +0,0 @@ -# Miscellaneous -*.class -*.log -*.pyc -*.swp -.DS_Store -.atom/ -.buildlog/ -.history -.svn/ - -# IntelliJ related -*.iml -*.ipr -*.iws -.idea/ - -# Visual Studio Code related -.vscode/ - -# Flutter/Dart/Pub related -**/doc/api/ -.dart_tool/ -.flutter-plugins -.packages -.pub-cache/ -.pub/ -/build/ -/lib/generated_plugin_registrant.dart - -# Android related -**/android/**/gradle-wrapper.jar -**/android/.gradle -**/android/captures/ -**/android/gradlew -**/android/gradlew.bat -**/android/local.properties -**/android/**/GeneratedPluginRegistrant.java - -# iOS/XCode related -**/ios/**/*.mode1v3 -**/ios/**/*.mode2v3 -**/ios/**/*.moved-aside -**/ios/**/*.pbxuser -**/ios/**/*.perspectivev3 -**/ios/**/*sync/ -**/ios/**/.sconsign.dblite -**/ios/**/.tags* -**/ios/**/.vagrant/ -**/ios/**/DerivedData/ -**/ios/**/Icon? -**/ios/**/Pods/ -**/ios/**/.symlinks/ -**/ios/**/profile -**/ios/**/xcuserdata -**/ios/.generated/ -**/ios/Flutter/App.framework -**/ios/Flutter/Flutter.framework -**/ios/Flutter/Generated.xcconfig -**/ios/Flutter/app.flx -**/ios/Flutter/app.zip -**/ios/Flutter/flutter_assets/ -**/ios/Flutter/flutter_export_environment.sh -**/ios/ServiceDefinitions.json -**/ios/Runner/GeneratedPluginRegistrant.* - -# Exceptions to above rules. -!**/ios/**/default.mode1v3 -!**/ios/**/default.mode2v3 -!**/ios/**/default.pbxuser -!**/ios/**/default.perspectivev3 -!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages - -# VSCode -.settings/ -.classpath -.project \ No newline at end of file diff --git a/flutter_maps_firestore/.metadata b/flutter_maps_firestore/.metadata deleted file mode 100644 index 14d323feb23..00000000000 --- a/flutter_maps_firestore/.metadata +++ /dev/null @@ -1,30 +0,0 @@ -# This file tracks properties of this Flutter project. -# Used by Flutter tool to assess capabilities and perform upgrades etc. -# -# This file should be version controlled and should not be manually edited. - -version: - revision: "db7ef5bf9f59442b0e200a90587e8fa5e0c6336a" - channel: "stable" - -project_type: app - -# Tracks metadata for the flutter migrate command -migration: - platforms: - - platform: root - create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a - base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a - - platform: ios - create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a - base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a - - # User provided section - - # List of Local paths (relative to this file) that should be - # ignored by the migrate tool. - # - # Files that are not part of the templates will be ignored by default. - unmanaged_files: - - 'lib/main.dart' - - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/flutter_maps_firestore/README.md b/flutter_maps_firestore/README.md deleted file mode 100644 index 0ca835e58bc..00000000000 --- a/flutter_maps_firestore/README.md +++ /dev/null @@ -1,60 +0,0 @@ -# Flutter Maps Firestore - -A Flutter sample app that shows the end product of the Cloud Next '19 talk -[Build Mobile Apps With Flutter and Google Maps](https://www.youtube.com/watch?v=RpQLFAFqMlw). -The live coding starts at about 17:40. - -## Goals for this sample - -* Showcase how to build an app that uses Google Maps with Flutter: - * Loading a list of Ice Cream shops from Cloud Firestore - * Listing the shops in a custom carousel - * Showing the shop locations on a map using Markers - * Controlling the Google Map from the carousel - -## The important bits - -### Cloud Firestore - -To set up Cloud Firestore connectivity, follow the steps outlined in the -[Cloud Firestore package setup section](https://pub.dev/packages/cloud_firestore#setup). - -Next, you need to populate your Cloud Firestore with a collection named `ice_cream_stores`, -structured a bit like this: - -``` -ice_cream_stores: - ChIJ70taCKKAhYAR5IMmYwQT4Ts: - placeId: ChIJ70taCKKAhYAR5IMmYwQT4Ts - address: 432 Octavia St #1a, San Francisco, CA 94102, USA - location: 37.7763629, -122.4241918 - name: Smitten Ice Cream -``` - -The collection name is referenced from `_HomePageState`'s `initState` method. The -`placeId`, `address`, `location` and `name` are used at various points in the widget -tree to render appropriate data. - -### Google Maps - -You need to add a Google Maps SDK for iOS API key to `ios/Runner/AppDelegate.m`. -This enables the Google Map to render. You will also need to add a Google Maps -Web Services API key to `lib/api_key.dart`. - -To reiterate the warning that we gave during the talk, do not put Web Service API keys -in your production binary. You need to build a proxy service to serve -pre-authenticated content to your mobile applications so you can change API keys as -required. We only did this to make it easy to demonstrate on stage. - -## Questions/issues - -If you have a general question about building with Google Maps in Flutter, the -best places to go are: - -* [The FlutterDev Google Group](https://groups.google.com/forum/#!forum/flutter-dev) -* [The Flutter Gitter channel](https://gitter.im/flutter/flutter) -* [StackOverflow](https://stackoverflow.com/questions/tagged/flutter) - -If you run into an issue with the sample itself, please file an issue -in the [main Flutter repo](https://github.com/flutter/flutter/issues). - diff --git a/flutter_maps_firestore/analysis_options.yaml b/flutter_maps_firestore/analysis_options.yaml deleted file mode 100644 index 13d6fe105a3..00000000000 --- a/flutter_maps_firestore/analysis_options.yaml +++ /dev/null @@ -1 +0,0 @@ -include: package:analysis_defaults/flutter.yaml diff --git a/flutter_maps_firestore/codelab_rebuild.yaml b/flutter_maps_firestore/codelab_rebuild.yaml deleted file mode 100644 index 85c228abd29..00000000000 --- a/flutter_maps_firestore/codelab_rebuild.yaml +++ /dev/null @@ -1,102 +0,0 @@ -# Run with tooling from https://github.com/flutter/codelabs/tree/main/tooling/codelab_rebuild -name: Flutter Maps Firestore rebuild script -steps: - - name: Remove the runner - rmdirs: - - ios - - name: Recreate runner - flutter: create --platforms ios . - - name: Create GoogleService-Info.plist - path: ios/GoogleService-Info.plist - replace-contents: | - - - - - - - - - name: Patch Podfile - path: ios/Podfile - patch-u: | - --- b/flutter_maps_firestore/ios/Podfile - +++ a/flutter_maps_firestore/ios/Podfile - @@ -1,5 +1,5 @@ - # Uncomment this line to define a global platform for your project - -# platform :ios, '11.0' - +platform :ios, '14.0' - - # CocoaPods analytics sends network stats synchronously affecting flutter build latency. - ENV['COCOAPODS_DISABLE_STATS'] = 'true' - @@ -37,5 +37,8 @@ end - post_install do |installer| - installer.pods_project.targets.each do |target| - flutter_additional_ios_build_settings(target) - + target.build_configurations.each do |config| - + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0' - + end - end - end - - name: Patch ios/Flutter/AppFrameworkInfo.plist - path: ios/Flutter/AppFrameworkInfo.plist - patch-u: | - --- b/flutter_maps_firestore/ios/Flutter/AppFrameworkInfo.plist - +++ a/flutter_maps_firestore/ios/Flutter/AppFrameworkInfo.plist - @@ -21,6 +21,6 @@ - CFBundleVersion - 1.0 - MinimumOSVersion - - 11.0 - + 14.0 - - - - name: Patch ios/Runner/AppDelegate.swift - path: ios/Runner/AppDelegate.swift - patch-u: | - --- b/flutter_maps_firestore/ios/Runner/AppDelegate.swift - +++ a/flutter_maps_firestore/ios/Runner/AppDelegate.swift - @@ -1,5 +1,6 @@ - import UIKit - import Flutter - +import GoogleMaps - - @UIApplicationMain - @objc class AppDelegate: FlutterAppDelegate { - @@ -7,7 +8,11 @@ import Flutter - _ application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? - ) -> Bool { - + // TODO: Replace this with an API key that has Google Maps for iOS enabled - + // See https://developers.google.com/maps/documentation/ios-sdk/get-api-key - + GMSServices.provideAPIKey("ADD_A_KEY_HERE") - GeneratedPluginRegistrant.register(with: self) - + - return super.application(application, didFinishLaunchingWithOptions: launchOptions) - } - } - - name: Patch ios/Runner/Info.plist - path: ios/Runner/Info.plist - patch-u: | - --- b/flutter_maps_firestore/ios/Runner/Info.plist - +++ a/flutter_maps_firestore/ios/Runner/Info.plist - @@ -2,10 +2,12 @@ - - - - + NSLocationWhenInUseUsageDescription - + Finding Ice Cream stores near you - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - - Flutter Maps Firestore - + Find Ice Cream - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - - name: flutter pub upgrade - flutter: pub upgrade --major-versions - - name: flutter build ios - flutter: build ios --simulator diff --git a/flutter_maps_firestore/ios/.gitignore b/flutter_maps_firestore/ios/.gitignore deleted file mode 100644 index 7a7f9873ad7..00000000000 --- a/flutter_maps_firestore/ios/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -**/dgph -*.mode1v3 -*.mode2v3 -*.moved-aside -*.pbxuser -*.perspectivev3 -**/*sync/ -.sconsign.dblite -.tags* -**/.vagrant/ -**/DerivedData/ -Icon? -**/Pods/ -**/.symlinks/ -profile -xcuserdata -**/.generated/ -Flutter/App.framework -Flutter/Flutter.framework -Flutter/Flutter.podspec -Flutter/Generated.xcconfig -Flutter/ephemeral/ -Flutter/app.flx -Flutter/app.zip -Flutter/flutter_assets/ -Flutter/flutter_export_environment.sh -ServiceDefinitions.json -Runner/GeneratedPluginRegistrant.* - -# Exceptions to above rules. -!default.mode1v3 -!default.mode2v3 -!default.pbxuser -!default.perspectivev3 diff --git a/flutter_maps_firestore/ios/Flutter/AppFrameworkInfo.plist b/flutter_maps_firestore/ios/Flutter/AppFrameworkInfo.plist deleted file mode 100644 index 163000d85c7..00000000000 --- a/flutter_maps_firestore/ios/Flutter/AppFrameworkInfo.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - App - CFBundleIdentifier - io.flutter.flutter.app - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - App - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - MinimumOSVersion - 14.0 - - diff --git a/flutter_maps_firestore/ios/Flutter/Debug.xcconfig b/flutter_maps_firestore/ios/Flutter/Debug.xcconfig deleted file mode 100644 index ec97fc6f302..00000000000 --- a/flutter_maps_firestore/ios/Flutter/Debug.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" -#include "Generated.xcconfig" diff --git a/flutter_maps_firestore/ios/Flutter/Release.xcconfig b/flutter_maps_firestore/ios/Flutter/Release.xcconfig deleted file mode 100644 index c4855bfe200..00000000000 --- a/flutter_maps_firestore/ios/Flutter/Release.xcconfig +++ /dev/null @@ -1,2 +0,0 @@ -#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" -#include "Generated.xcconfig" diff --git a/flutter_maps_firestore/ios/GoogleService-Info.plist b/flutter_maps_firestore/ios/GoogleService-Info.plist deleted file mode 100644 index 413504c353c..00000000000 --- a/flutter_maps_firestore/ios/GoogleService-Info.plist +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/flutter_maps_firestore/ios/Podfile b/flutter_maps_firestore/ios/Podfile deleted file mode 100644 index 2ad1d84f18d..00000000000 --- a/flutter_maps_firestore/ios/Podfile +++ /dev/null @@ -1,47 +0,0 @@ -# Uncomment this line to define a global platform for your project -platform :ios, '14.0' - -# CocoaPods analytics sends network stats synchronously affecting flutter build latency. -ENV['COCOAPODS_DISABLE_STATS'] = 'true' - -project 'Runner', { - 'Debug' => :debug, - 'Profile' => :release, - 'Release' => :release, -} - -def flutter_root - generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) - unless File.exist?(generated_xcode_build_settings_path) - raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" - end - - File.foreach(generated_xcode_build_settings_path) do |line| - matches = line.match(/FLUTTER_ROOT\=(.*)/) - return matches[1].strip if matches - end - raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" -end - -require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) - -flutter_ios_podfile_setup - -target 'Runner' do - use_frameworks! - use_modular_headers! - - flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) - target 'RunnerTests' do - inherit! :search_paths - end -end - -post_install do |installer| - installer.pods_project.targets.each do |target| - flutter_additional_ios_build_settings(target) - target.build_configurations.each do |config| - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0' - end - end -end diff --git a/flutter_maps_firestore/ios/Podfile.orig b/flutter_maps_firestore/ios/Podfile.orig deleted file mode 100644 index fdcc671eb34..00000000000 --- a/flutter_maps_firestore/ios/Podfile.orig +++ /dev/null @@ -1,44 +0,0 @@ -# Uncomment this line to define a global platform for your project -# platform :ios, '11.0' - -# CocoaPods analytics sends network stats synchronously affecting flutter build latency. -ENV['COCOAPODS_DISABLE_STATS'] = 'true' - -project 'Runner', { - 'Debug' => :debug, - 'Profile' => :release, - 'Release' => :release, -} - -def flutter_root - generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) - unless File.exist?(generated_xcode_build_settings_path) - raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" - end - - File.foreach(generated_xcode_build_settings_path) do |line| - matches = line.match(/FLUTTER_ROOT\=(.*)/) - return matches[1].strip if matches - end - raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" -end - -require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) - -flutter_ios_podfile_setup - -target 'Runner' do - use_frameworks! - use_modular_headers! - - flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) - target 'RunnerTests' do - inherit! :search_paths - end -end - -post_install do |installer| - installer.pods_project.targets.each do |target| - flutter_additional_ios_build_settings(target) - end -end diff --git a/flutter_maps_firestore/ios/Runner.xcodeproj/project.pbxproj b/flutter_maps_firestore/ios/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 978f2a3cafe..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,740 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXBuildFile section */ - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; - 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; - 8FA410048F6706D308366009 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7BB5CBC476788D0478BD5EAF /* Pods_Runner.framework */; }; - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; - B9CEC9358599F22CAE19D682 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71E4FFB8C862FFE980E0DADD /* Pods_RunnerTests.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 97C146E61CF9000F007C117D /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C146ED1CF9000F007C117D; - remoteInfo = Runner; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 9705A1C41CF9048500538489 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 03CD70053BAF61350AFBFCAB /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; - 11EB10F22A04BA04C0BD73F2 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; }; - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; - 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; - 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 5650FC388BDBEBEFC5ACA086 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; - 58DBE5B7E8A1CFF1B4C3CFA2 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; }; - 5A055472656BC502DCBA8458 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; - 71E4FFB8C862FFE980E0DADD /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; - 7BB5CBC476788D0478BD5EAF /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; - 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; - 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E9CFCFAF09DDB012AB6EEA85 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 5F1C4EF9CED11BD3973EB47D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B9CEC9358599F22CAE19D682 /* Pods_RunnerTests.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EB1CF9000F007C117D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8FA410048F6706D308366009 /* Pods_Runner.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 1C4061A7C82A155F8C6559FF /* Frameworks */ = { - isa = PBXGroup; - children = ( - 7BB5CBC476788D0478BD5EAF /* Pods_Runner.framework */, - 71E4FFB8C862FFE980E0DADD /* Pods_RunnerTests.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 331C8082294A63A400263BE5 /* RunnerTests */ = { - isa = PBXGroup; - children = ( - 331C807B294A618700263BE5 /* RunnerTests.swift */, - ); - path = RunnerTests; - sourceTree = ""; - }; - 9740EEB11CF90186004384FC /* Flutter */ = { - isa = PBXGroup; - children = ( - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 9740EEB31CF90195004384FC /* Generated.xcconfig */, - ); - name = Flutter; - sourceTree = ""; - }; - 97C146E51CF9000F007C117D = { - isa = PBXGroup; - children = ( - 9740EEB11CF90186004384FC /* Flutter */, - 97C146F01CF9000F007C117D /* Runner */, - 97C146EF1CF9000F007C117D /* Products */, - 331C8082294A63A400263BE5 /* RunnerTests */, - DB2C2D7E7098F698464F073C /* Pods */, - 1C4061A7C82A155F8C6559FF /* Frameworks */, - ); - sourceTree = ""; - }; - 97C146EF1CF9000F007C117D /* Products */ = { - isa = PBXGroup; - children = ( - 97C146EE1CF9000F007C117D /* Runner.app */, - 331C8081294A63A400263BE5 /* RunnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 97C146F01CF9000F007C117D /* Runner */ = { - isa = PBXGroup; - children = ( - 97C146FA1CF9000F007C117D /* Main.storyboard */, - 97C146FD1CF9000F007C117D /* Assets.xcassets */, - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, - 97C147021CF9000F007C117D /* Info.plist */, - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, - ); - path = Runner; - sourceTree = ""; - }; - DB2C2D7E7098F698464F073C /* Pods */ = { - isa = PBXGroup; - children = ( - 03CD70053BAF61350AFBFCAB /* Pods-Runner.debug.xcconfig */, - 5A055472656BC502DCBA8458 /* Pods-Runner.release.xcconfig */, - 5650FC388BDBEBEFC5ACA086 /* Pods-Runner.profile.xcconfig */, - 11EB10F22A04BA04C0BD73F2 /* Pods-RunnerTests.debug.xcconfig */, - E9CFCFAF09DDB012AB6EEA85 /* Pods-RunnerTests.release.xcconfig */, - 58DBE5B7E8A1CFF1B4C3CFA2 /* Pods-RunnerTests.profile.xcconfig */, - ); - name = Pods; - path = Pods; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 331C8080294A63A400263BE5 /* RunnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; - buildPhases = ( - E81519F08BD4F27BFAC8C2EC /* [CP] Check Pods Manifest.lock */, - 331C807D294A63A400263BE5 /* Sources */, - 331C807F294A63A400263BE5 /* Resources */, - 5F1C4EF9CED11BD3973EB47D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 331C8086294A63A400263BE5 /* PBXTargetDependency */, - ); - name = RunnerTests; - productName = RunnerTests; - productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 97C146ED1CF9000F007C117D /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 4C952FF272783A69B69CC2B8 /* [CP] Check Pods Manifest.lock */, - 9740EEB61CF901F6004384FC /* Run Script */, - 97C146EA1CF9000F007C117D /* Sources */, - 97C146EB1CF9000F007C117D /* Frameworks */, - 97C146EC1CF9000F007C117D /* Resources */, - 9705A1C41CF9048500538489 /* Embed Frameworks */, - 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - EBBC1F42ABE186799FAE2055 /* [CP] Embed Pods Frameworks */, - 5C75F8886A87CF4AE8E1AE29 /* [CP] Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Runner; - productName = Runner; - productReference = 97C146EE1CF9000F007C117D /* Runner.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 97C146E61CF9000F007C117D /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - LastUpgradeCheck = 1430; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 331C8080294A63A400263BE5 = { - CreatedOnToolsVersion = 14.0; - TestTargetID = 97C146ED1CF9000F007C117D; - }; - 97C146ED1CF9000F007C117D = { - CreatedOnToolsVersion = 7.3.1; - LastSwiftMigration = 1100; - }; - }; - }; - buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 97C146E51CF9000F007C117D; - productRefGroup = 97C146EF1CF9000F007C117D /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 97C146ED1CF9000F007C117D /* Runner */, - 331C8080294A63A400263BE5 /* RunnerTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 331C807F294A63A400263BE5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EC1CF9000F007C117D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", - ); - name = "Thin Binary"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; - }; - 4C952FF272783A69B69CC2B8 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - 5C75F8886A87CF4AE8E1AE29 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 9740EEB61CF901F6004384FC /* Run Script */ = { - isa = PBXShellScriptBuildPhase; - alwaysOutOfDate = 1; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Run Script"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; - }; - E81519F08BD4F27BFAC8C2EC /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - EBBC1F42ABE186799FAE2055 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 331C807D294A63A400263BE5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97C146EA1CF9000F007C117D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 97C146ED1CF9000F007C117D /* Runner */; - targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 97C146FA1CF9000F007C117D /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C146FB1CF9000F007C117D /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C147001CF9000F007C117D /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 249021D3217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 249021D4217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterMapsFirestore; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Profile; - }; - 331C8088294A63A400263BE5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 11EB10F22A04BA04C0BD73F2 /* Pods-RunnerTests.debug.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterMapsFirestore.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Debug; - }; - 331C8089294A63A400263BE5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E9CFCFAF09DDB012AB6EEA85 /* Pods-RunnerTests.release.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterMapsFirestore.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Release; - }; - 331C808A294A63A400263BE5 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 58DBE5B7E8A1CFF1B4C3CFA2 /* Pods-RunnerTests.profile.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterMapsFirestore.RunnerTests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; - }; - name = Profile; - }; - 97C147031CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 97C147041CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 97C147061CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterMapsFirestore; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 97C147071CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterMapsFirestore; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 331C8088294A63A400263BE5 /* Debug */, - 331C8089294A63A400263BE5 /* Release */, - 331C808A294A63A400263BE5 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147031CF9000F007C117D /* Debug */, - 97C147041CF9000F007C117D /* Release */, - 249021D3217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147061CF9000F007C117D /* Debug */, - 97C147071CF9000F007C117D /* Release */, - 249021D4217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 97C146E61CF9000F007C117D /* Project object */; -} diff --git a/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a6254..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003d6..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5ea1..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/flutter_maps_firestore/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/flutter_maps_firestore/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index 87131a09bea..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_maps_firestore/ios/Runner.xcworkspace/contents.xcworkspacedata b/flutter_maps_firestore/ios/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 21a3cc14c74..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/flutter_maps_firestore/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/flutter_maps_firestore/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d981003d6..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/flutter_maps_firestore/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/flutter_maps_firestore/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5ea1..00000000000 --- a/flutter_maps_firestore/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/flutter_maps_firestore/ios/Runner/AppDelegate.swift b/flutter_maps_firestore/ios/Runner/AppDelegate.swift deleted file mode 100644 index 9bd97cf8787..00000000000 --- a/flutter_maps_firestore/ios/Runner/AppDelegate.swift +++ /dev/null @@ -1,18 +0,0 @@ -import UIKit -import Flutter -import GoogleMaps - -@UIApplicationMain -@objc class AppDelegate: FlutterAppDelegate { - override func application( - _ application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? - ) -> Bool { - // TODO: Replace this with an API key that has Google Maps for iOS enabled - // See https://developers.google.com/maps/documentation/ios-sdk/get-api-key - GMSServices.provideAPIKey("ADD_A_KEY_HERE") - GeneratedPluginRegistrant.register(with: self) - - return super.application(application, didFinishLaunchingWithOptions: launchOptions) - } -} diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index d36b1fab2d9..00000000000 --- a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "images" : [ - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@3x.png", - "scale" : "3x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@3x.png", - "scale" : "3x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@3x.png", - "scale" : "3x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@2x.png", - "scale" : "2x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@3x.png", - "scale" : "3x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@1x.png", - "scale" : "1x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@1x.png", - "scale" : "1x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@1x.png", - "scale" : "1x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@2x.png", - "scale" : "2x" - }, - { - "size" : "83.5x83.5", - "idiom" : "ipad", - "filename" : "Icon-App-83.5x83.5@2x.png", - "scale" : "2x" - }, - { - "size" : "1024x1024", - "idiom" : "ios-marketing", - "filename" : "Icon-App-1024x1024@1x.png", - "scale" : "1x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png deleted file mode 100644 index dc9ada4725e..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png deleted file mode 100644 index 7353c41ecf9..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png deleted file mode 100644 index 797d452e458..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png deleted file mode 100644 index 6ed2d933e11..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png deleted file mode 100644 index 4cd7b0099ca..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png deleted file mode 100644 index fe730945a01..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png deleted file mode 100644 index 321773cd857..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png deleted file mode 100644 index 797d452e458..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png deleted file mode 100644 index 502f463a9bc..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png deleted file mode 100644 index 0ec30343922..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png deleted file mode 100644 index 0ec30343922..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png deleted file mode 100644 index e9f5fea27c7..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png deleted file mode 100644 index 84ac32ae7d9..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png deleted file mode 100644 index 8953cba0906..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png deleted file mode 100644 index 0467bf12aa4..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json deleted file mode 100644 index 0bedcf2fd46..00000000000 --- a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "LaunchImage.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png deleted file mode 100644 index 9da19eacad3..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png deleted file mode 100644 index 9da19eacad3..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png deleted file mode 100644 index 9da19eacad3..00000000000 Binary files a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png and /dev/null differ diff --git a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md deleted file mode 100644 index 89c2725b70f..00000000000 --- a/flutter_maps_firestore/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Launch Screen Assets - -You can customize the launch screen with your own desired assets by replacing the image files in this directory. - -You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/flutter_maps_firestore/ios/Runner/Base.lproj/LaunchScreen.storyboard b/flutter_maps_firestore/ios/Runner/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index f2e259c7c93..00000000000 --- a/flutter_maps_firestore/ios/Runner/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_maps_firestore/ios/Runner/Base.lproj/Main.storyboard b/flutter_maps_firestore/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c28516fb3..00000000000 --- a/flutter_maps_firestore/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/flutter_maps_firestore/ios/Runner/Info.plist b/flutter_maps_firestore/ios/Runner/Info.plist deleted file mode 100644 index ea22747a646..00000000000 --- a/flutter_maps_firestore/ios/Runner/Info.plist +++ /dev/null @@ -1,51 +0,0 @@ - - - - - NSLocationWhenInUseUsageDescription - Finding Ice Cream stores near you - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Find Ice Cream - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - flutter_maps_firestore - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - CADisableMinimumFrameDurationOnPhone - - UIApplicationSupportsIndirectInputEvents - - - diff --git a/flutter_maps_firestore/ios/Runner/Runner-Bridging-Header.h b/flutter_maps_firestore/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a560b4..00000000000 --- a/flutter_maps_firestore/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/flutter_maps_firestore/ios/RunnerTests/RunnerTests.swift b/flutter_maps_firestore/ios/RunnerTests/RunnerTests.swift deleted file mode 100644 index 86a7c3b1b61..00000000000 --- a/flutter_maps_firestore/ios/RunnerTests/RunnerTests.swift +++ /dev/null @@ -1,12 +0,0 @@ -import Flutter -import UIKit -import XCTest - -class RunnerTests: XCTestCase { - - func testExample() { - // If you add code to the Runner application, consider adding tests here. - // See https://developer.apple.com/documentation/xctest for more information about using XCTest. - } - -} diff --git a/flutter_maps_firestore/lib/api_key.dart b/flutter_maps_firestore/lib/api_key.dart deleted file mode 100644 index ae1219a229b..00000000000 --- a/flutter_maps_firestore/lib/api_key.dart +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright 2019 The Flutter team. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// TODO: Install a Google Maps API key that has Google Maps Web Services enabled -// See https://developers.google.com/places/web-service/get-api-key -const String googleMapsApiKey = 'ADD_A_KEY_HERE'; diff --git a/flutter_maps_firestore/lib/main.dart b/flutter_maps_firestore/lib/main.dart deleted file mode 100644 index 13668c621ce..00000000000 --- a/flutter_maps_firestore/lib/main.dart +++ /dev/null @@ -1,283 +0,0 @@ -// Copyright 2019 The Flutter team. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -import 'dart:async'; - -import 'package:cloud_firestore/cloud_firestore.dart'; -import 'package:firebase_core/firebase_core.dart'; -import 'package:flutter/material.dart'; -import 'package:google_maps_flutter/google_maps_flutter.dart'; -import 'package:google_maps_webservice/places.dart'; - -import 'api_key.dart'; - -// Center of the Google Map -const initialPosition = LatLng(37.7786, -122.4375); -// Hue used by the Google Map Markers to match the theme -const _pinkHue = 350.0; -// Places API client used for Place Photos -final _placesApiClient = GoogleMapsPlaces(apiKey: googleMapsApiKey); - -Future main() async { - WidgetsFlutterBinding.ensureInitialized(); - await Firebase.initializeApp(); - runApp(const App()); -} - -class App extends StatelessWidget { - const App({super.key}); - - @override - Widget build(BuildContext context) { - return MaterialApp( - title: 'Ice Creams FTW', - home: const HomePage(title: 'Ice Cream Stores in SF'), - theme: ThemeData( - colorSchemeSeed: Colors.pink, - scaffoldBackgroundColor: Colors.pink[50], - ), - ); - } -} - -class HomePage extends StatefulWidget { - const HomePage({required this.title, super.key}); - final String title; - - @override - State createState() { - return _HomePageState(); - } -} - -class _HomePageState extends State { - late Stream _iceCreamStores; - final Completer _mapController = Completer(); - - @override - void initState() { - super.initState(); - _iceCreamStores = - FirebaseFirestore.instance - .collection('ice_cream_stores') - .orderBy('name') - .snapshots(); - } - - @override - Widget build(BuildContext context) { - return Scaffold( - appBar: AppBar(title: Text(widget.title)), - body: StreamBuilder( - stream: _iceCreamStores, - builder: (context, snapshot) { - return switch (snapshot) { - AsyncSnapshot(hasError: true) => Center( - child: Text('Error: ${snapshot.error}'), - ), - AsyncSnapshot(hasData: false) => const Center( - child: Text('Loading...'), - ), - _ => Stack( - children: [ - StoreMap( - documents: snapshot.data!.docs, - initialPosition: initialPosition, - mapController: _mapController, - ), - StoreCarousel( - mapController: _mapController, - documents: snapshot.data!.docs, - ), - ], - ), - }; - }, - ), - ); - } -} - -class StoreCarousel extends StatelessWidget { - const StoreCarousel({ - super.key, - required this.documents, - required this.mapController, - }); - - final List documents; - final Completer mapController; - - @override - Widget build(BuildContext context) { - return Align( - alignment: Alignment.topLeft, - child: Padding( - padding: const EdgeInsets.only(top: 10), - child: SizedBox( - height: 90, - child: StoreCarouselList( - documents: documents, - mapController: mapController, - ), - ), - ), - ); - } -} - -class StoreCarouselList extends StatelessWidget { - const StoreCarouselList({ - super.key, - required this.documents, - required this.mapController, - }); - - final List documents; - final Completer mapController; - - @override - Widget build(BuildContext context) { - return ListView.builder( - scrollDirection: Axis.horizontal, - itemCount: documents.length, - itemBuilder: (context, index) { - return SizedBox( - width: 340, - child: Padding( - padding: const EdgeInsets.only(left: 8), - child: Card( - child: Center( - child: StoreListTile( - document: documents[index], - mapController: mapController, - ), - ), - ), - ), - ); - }, - ); - } -} - -class StoreListTile extends StatefulWidget { - const StoreListTile({ - super.key, - required this.document, - required this.mapController, - }); - - final DocumentSnapshot document; - final Completer mapController; - - @override - State createState() { - return _StoreListTileState(); - } -} - -class _StoreListTileState extends State { - String _placePhotoUrl = ''; - bool _disposed = false; - - @override - void initState() { - super.initState(); - _retrievePlacesDetails(); - } - - @override - void dispose() { - _disposed = true; - super.dispose(); - } - - Future _retrievePlacesDetails() async { - final details = await _placesApiClient.getDetailsByPlaceId( - widget.document['placeId'] as String, - ); - if (!_disposed) { - setState(() { - _placePhotoUrl = _placesApiClient.buildPhotoUrl( - photoReference: details.result.photos[0].photoReference, - maxHeight: 300, - ); - }); - } - } - - @override - Widget build(BuildContext context) { - return ListTile( - title: Text(widget.document['name'] as String), - subtitle: Text(widget.document['address'] as String), - leading: SizedBox( - width: 100, - height: 100, - child: - _placePhotoUrl.isNotEmpty - ? ClipRRect( - borderRadius: const BorderRadius.all(Radius.circular(2)), - child: Image.network(_placePhotoUrl, fit: BoxFit.cover), - ) - : Container(), - ), - onTap: () async { - final controller = await widget.mapController.future; - await controller.animateCamera( - CameraUpdate.newCameraPosition( - CameraPosition( - target: LatLng( - widget.document['location'].latitude as double, - widget.document['location'].longitude as double, - ), - zoom: 16, - ), - ), - ); - }, - ); - } -} - -class StoreMap extends StatelessWidget { - const StoreMap({ - super.key, - required this.documents, - required this.initialPosition, - required this.mapController, - }); - - final List documents; - final LatLng initialPosition; - final Completer mapController; - - @override - Widget build(BuildContext context) { - return GoogleMap( - initialCameraPosition: CameraPosition(target: initialPosition, zoom: 12), - markers: - documents - .map( - (document) => Marker( - markerId: MarkerId(document['placeId'] as String), - icon: BitmapDescriptor.defaultMarkerWithHue(_pinkHue), - position: LatLng( - document['location'].latitude as double, - document['location'].longitude as double, - ), - infoWindow: InfoWindow( - title: document['name'] as String?, - snippet: document['address'] as String?, - ), - ), - ) - .toSet(), - onMapCreated: (mapController) { - this.mapController.complete(mapController); - }, - ); - } -} diff --git a/flutter_maps_firestore/pubspec.yaml b/flutter_maps_firestore/pubspec.yaml deleted file mode 100644 index a45675abf33..00000000000 --- a/flutter_maps_firestore/pubspec.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: flutter_maps_firestore -description: A new Flutter project. -version: 1.0.0+1 - -environment: - sdk: ^3.7.0-0 - -dependencies: - flutter: - sdk: flutter - cloud_firestore: ">=4.6.0 <6.0.0" - firebase_core: ">=2.11.0 <4.0.0" - google_maps_flutter: ^2.2.6 - google_maps_webservice: ^0.0.20-nullsafety.5 - location: ^7.0.0 - -dev_dependencies: - analysis_defaults: - path: ../analysis_defaults - flutter_test: - sdk: flutter - -flutter: - uses-material-design: true diff --git a/flutter_maps_firestore/test/widget_test.dart b/flutter_maps_firestore/test/widget_test.dart deleted file mode 100644 index 899d7439eec..00000000000 --- a/flutter_maps_firestore/test/widget_test.dart +++ /dev/null @@ -1,9 +0,0 @@ -// Copyright 2019 The Flutter team. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -import 'package:flutter_test/flutter_test.dart'; - -void main() { - testWidgets('This test always passes', (tester) async {}); -} diff --git a/form_app/lib/main.dart b/form_app/lib/main.dart index 9be0081cc08..46a11baca4f 100644 --- a/form_app/lib/main.dart +++ b/form_app/lib/main.dart @@ -24,7 +24,8 @@ const double windowWidth = 480; const double windowHeight = 854; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Form Samples'); setWindowMinSize(const Size(windowWidth, windowHeight)); @@ -45,11 +46,10 @@ final demos = [ Demo( name: 'Sign in with HTTP', route: 'signin_http', - builder: - (context) => SignInHttpDemo( - // This sample uses a mock HTTP client. - httpClient: mockClient, - ), + builder: (context) => SignInHttpDemo( + // This sample uses a mock HTTP client. + httpClient: mockClient, + ), ), Demo( name: 'Autofill', @@ -130,5 +130,9 @@ class Demo { final String route; final WidgetBuilder builder; - const Demo({required this.name, required this.route, required this.builder}); + const Demo({ + required this.name, + required this.route, + required this.builder, + }); } diff --git a/form_app/lib/src/autofill.dart b/form_app/lib/src/autofill.dart index 8b8d2dbd5e4..7e2a9b0c58b 100644 --- a/form_app/lib/src/autofill.dart +++ b/form_app/lib/src/autofill.dart @@ -99,7 +99,9 @@ class _AutofillDemoState extends State { ), autofillHints: [AutofillHints.countryCode], ), - ].expand((widget) => [widget, const SizedBox(height: 24)]), + ].expand( + (widget) => [widget, const SizedBox(height: 24)], + ), ], ), ), diff --git a/form_app/lib/src/form_widgets.dart b/form_app/lib/src/form_widgets.dart index 222edefc33f..b527eb40d27 100644 --- a/form_app/lib/src/form_widgets.dart +++ b/form_app/lib/src/form_widgets.dart @@ -77,11 +77,14 @@ class _FormWidgetsDemoState extends State { crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, + mainAxisAlignment: + MainAxisAlignment.spaceBetween, children: [ Text( 'Estimated value', - style: Theme.of(context).textTheme.bodyLarge, + style: Theme.of( + context, + ).textTheme.bodyLarge, ), ], ), @@ -90,7 +93,9 @@ class _FormWidgetsDemoState extends State { symbol: "\$", decimalDigits: 0, ).format(maxValue), - style: Theme.of(context).textTheme.titleMedium, + style: Theme.of( + context, + ).textTheme.titleMedium, ), Slider( min: 0, @@ -119,7 +124,9 @@ class _FormWidgetsDemoState extends State { ), Text( 'Brushed Teeth', - style: Theme.of(context).textTheme.titleMedium, + style: Theme.of( + context, + ).textTheme.titleMedium, ), ], ), diff --git a/form_app/lib/src/http/mock_client.dart b/form_app/lib/src/http/mock_client.dart index 1d11d099eee..0774b6c3195 100644 --- a/form_app/lib/src/http/mock_client.dart +++ b/form_app/lib/src/http/mock_client.dart @@ -11,7 +11,8 @@ Future _mockHandler(http.Request request) async { json.decode(request.body) as Map, ); - if (decodedJson['email'] == 'root' && decodedJson['password'] == 'password') { + if (decodedJson['email'] == 'root' && + decodedJson['password'] == 'password') { return http.Response('', 200); } diff --git a/form_app/lib/src/sign_in_http.dart b/form_app/lib/src/sign_in_http.dart index 4096e922b3e..d014a18a3b8 100644 --- a/form_app/lib/src/sign_in_http.dart +++ b/form_app/lib/src/sign_in_http.dart @@ -97,16 +97,15 @@ class _SignInHttpDemoState extends State { void _showDialog(String message) { showDialog( context: context, - builder: - (context) => AlertDialog( - title: Text(message), - actions: [ - TextButton( - child: const Text('OK'), - onPressed: () => Navigator.of(context).pop(), - ), - ], + builder: (context) => AlertDialog( + title: Text(message), + actions: [ + TextButton( + child: const Text('OK'), + onPressed: () => Navigator.of(context).pop(), ), + ], + ), ); } } diff --git a/form_app/lib/src/validation.dart b/form_app/lib/src/validation.dart index 65f2d2e38a7..5a46cc47b23 100644 --- a/form_app/lib/src/validation.dart +++ b/form_app/lib/src/validation.dart @@ -38,19 +38,18 @@ class _FormValidationDemoState extends State { showDialog( context: context, - builder: - (context) => AlertDialog( - title: const Text('Your story'), - content: Text('The $adjective developer saw a $noun'), - actions: [ - TextButton( - child: const Text('Done'), - onPressed: () { - Navigator.of(context).pop(); - }, - ), - ], + builder: (context) => AlertDialog( + title: const Text('Your story'), + content: Text('The $adjective developer saw a $noun'), + actions: [ + TextButton( + child: const Text('Done'), + onPressed: () { + Navigator.of(context).pop(); + }, ), + ], + ), ); }, ), @@ -138,18 +137,21 @@ class _FormValidationDemoState extends State { ), Text( 'I agree to the terms of service.', - style: Theme.of(context).textTheme.titleMedium, + style: Theme.of( + context, + ).textTheme.titleMedium, ), ], ), if (!formFieldState.isValid) Text( formFieldState.errorText ?? "", - style: Theme.of( - context, - ).textTheme.bodySmall!.copyWith( - color: Theme.of(context).colorScheme.error, - ), + style: Theme.of(context).textTheme.bodySmall! + .copyWith( + color: Theme.of( + context, + ).colorScheme.error, + ), ), ], ); diff --git a/form_app/pubspec.yaml b/form_app/pubspec.yaml index 790e13fbff1..69dc8aef83f 100644 --- a/form_app/pubspec.yaml +++ b/form_app/pubspec.yaml @@ -2,9 +2,10 @@ name: form_app description: A sample demonstrating different types of forms and best practices publish_to: "none" version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -18,7 +19,7 @@ dependencies: git: url: https://github.com/google/flutter-desktop-embedding.git path: plugins/window_size - go_router: ^16.1.0 + go_router: ^16.0.0 dev_dependencies: analysis_defaults: diff --git a/form_app/test/form_app_test.dart b/form_app/test/form_app_test.dart index 9caecec8948..a674e66b925 100644 --- a/form_app/test/form_app_test.dart +++ b/form_app/test/form_app_test.dart @@ -22,7 +22,11 @@ void main() { }); } -Future _signIn(WidgetTester tester, String email, String password) async { +Future _signIn( + WidgetTester tester, + String email, + String password, +) async { await tester.pumpWidget( MaterialApp(home: SignInHttpDemo(httpClient: mockClient)), ); diff --git a/game_template/lib/main.dart b/game_template/lib/main.dart index de11af8d08d..b2e30e9c88e 100644 --- a/game_template/lib/main.dart +++ b/game_template/lib/main.dart @@ -129,19 +129,16 @@ class MyApp extends StatelessWidget { routes: [ GoRoute( path: '/', - builder: - (context, state) => const MainMenuScreen(key: Key('main menu')), + builder: (context, state) => + const MainMenuScreen(key: Key('main menu')), routes: [ GoRoute( path: 'play', - pageBuilder: - (context, state) => buildMyTransition( - key: ValueKey('play'), - child: const LevelSelectionScreen( - key: Key('level selection'), - ), - color: context.watch().backgroundLevelSelection, - ), + pageBuilder: (context, state) => buildMyTransition( + key: ValueKey('play'), + child: const LevelSelectionScreen(key: Key('level selection')), + color: context.watch().backgroundLevelSelection, + ), routes: [ GoRoute( path: 'session/:level', @@ -190,8 +187,8 @@ class MyApp extends StatelessWidget { ), GoRoute( path: 'settings', - builder: - (context, state) => const SettingsScreen(key: Key('settings')), + builder: (context, state) => + const SettingsScreen(key: Key('settings')), ), ], ), @@ -238,10 +235,9 @@ class MyApp extends StatelessWidget { ), Provider( lazy: false, - create: - (context) => - SettingsController(persistence: settingsPersistence) - ..loadStateFromPersistence(), + create: (context) => + SettingsController(persistence: settingsPersistence) + ..loadStateFromPersistence(), ), ProxyProvider2< SettingsController, diff --git a/game_template/lib/src/ads/ads_controller.dart b/game_template/lib/src/ads/ads_controller.dart index 6c1e4da46c9..8afc80a83ce 100644 --- a/game_template/lib/src/ads/ads_controller.dart +++ b/game_template/lib/src/ads/ads_controller.dart @@ -36,11 +36,10 @@ class AdsController { void preloadAd() { // TODO: When ready, change this to the Ad Unit IDs provided by AdMob. // The current values are AdMob's sample IDs. - final adUnitId = - defaultTargetPlatform == TargetPlatform.android - ? 'ca-app-pub-3940256099942544/6300978111' - // iOS - : 'ca-app-pub-3940256099942544/2934735716'; + final adUnitId = defaultTargetPlatform == TargetPlatform.android + ? 'ca-app-pub-3940256099942544/6300978111' + // iOS + : 'ca-app-pub-3940256099942544/2934735716'; _preloadedAd = PreloadedBannerAd( size: AdSize.mediumRectangle, adUnitId: adUnitId, diff --git a/game_template/lib/src/ads/banner_ad_widget.dart b/game_template/lib/src/ads/banner_ad_widget.dart index cfbe6e609c2..bd486cf4a5c 100644 --- a/game_template/lib/src/ads/banner_ad_widget.dart +++ b/game_template/lib/src/ads/banner_ad_widget.dart @@ -150,10 +150,9 @@ class _BannerAdWidgetState extends State { // https://developers.google.com/admob/android/test-ads. When ready, // you replace this with your own, production ad unit ID, // created in https://apps.admob.com/. - adUnitId: - Theme.of(context).platform == TargetPlatform.android - ? 'ca-app-pub-3940256099942544/6300978111' - : 'ca-app-pub-3940256099942544/2934735716', + adUnitId: Theme.of(context).platform == TargetPlatform.android + ? 'ca-app-pub-3940256099942544/6300978111' + : 'ca-app-pub-3940256099942544/2934735716', size: size, request: const AdRequest(), listener: BannerAdListener( diff --git a/game_template/lib/src/play_session/play_session_screen.dart b/game_template/lib/src/play_session/play_session_screen.dart index 3c038129da6..4f06cca291a 100644 --- a/game_template/lib/src/play_session/play_session_screen.dart +++ b/game_template/lib/src/play_session/play_session_screen.dart @@ -48,9 +48,8 @@ class _PlaySessionScreenState extends State { return MultiProvider( providers: [ ChangeNotifierProvider( - create: - (context) => - LevelState(goal: widget.level.difficulty, onWin: _playerWon), + create: (context) => + LevelState(goal: widget.level.difficulty, onWin: _playerWon), ), ], child: IgnorePointer( @@ -80,17 +79,14 @@ class _PlaySessionScreenState extends State { ' or above!', ), Consumer( - builder: - (context, levelState, child) => Slider( - label: 'Level Progress', - autofocus: true, - value: levelState.progress / 100, - onChanged: - (value) => levelState.setProgress( - (value * 100).round(), - ), - onChangeEnd: (value) => levelState.evaluate(), - ), + builder: (context, levelState, child) => Slider( + label: 'Level Progress', + autofocus: true, + value: levelState.progress / 100, + onChanged: (value) => + levelState.setProgress((value * 100).round()), + onChangeEnd: (value) => levelState.evaluate(), + ), ), const Spacer(), Padding( diff --git a/game_template/lib/src/settings/custom_name_dialog.dart b/game_template/lib/src/settings/custom_name_dialog.dart index 3d1298543a4..786902a42d8 100644 --- a/game_template/lib/src/settings/custom_name_dialog.dart +++ b/game_template/lib/src/settings/custom_name_dialog.dart @@ -10,9 +10,8 @@ import 'settings.dart'; void showCustomNameDialog(BuildContext context) { showGeneralDialog( context: context, - pageBuilder: - (context, animation, secondaryAnimation) => - CustomNameDialog(animation: animation), + pageBuilder: (context, animation, secondaryAnimation) => + CustomNameDialog(animation: animation), ); } diff --git a/game_template/lib/src/settings/settings_screen.dart b/game_template/lib/src/settings/settings_screen.dart index 791fec6e098..2f48b08dedc 100644 --- a/game_template/lib/src/settings/settings_screen.dart +++ b/game_template/lib/src/settings/settings_screen.dart @@ -42,21 +42,19 @@ class SettingsScreen extends StatelessWidget { const _NameChangeLine('Name'), ValueListenableBuilder( valueListenable: settings.soundsOn, - builder: - (context, soundsOn, child) => _SettingsLine( - 'Sound FX', - Icon(soundsOn ? Icons.graphic_eq : Icons.volume_off), - onSelected: () => settings.toggleSoundsOn(), - ), + builder: (context, soundsOn, child) => _SettingsLine( + 'Sound FX', + Icon(soundsOn ? Icons.graphic_eq : Icons.volume_off), + onSelected: () => settings.toggleSoundsOn(), + ), ), ValueListenableBuilder( valueListenable: settings.musicOn, - builder: - (context, musicOn, child) => _SettingsLine( - 'Music', - Icon(musicOn ? Icons.music_note : Icons.music_off), - onSelected: () => settings.toggleMusicOn(), - ), + builder: (context, musicOn, child) => _SettingsLine( + 'Music', + Icon(musicOn ? Icons.music_note : Icons.music_off), + onSelected: () => settings.toggleMusicOn(), + ), ), Consumer( builder: (context, inAppPurchase, child) { @@ -137,14 +135,13 @@ class _NameChangeLine extends StatelessWidget { const Spacer(), ValueListenableBuilder( valueListenable: settings.playerName, - builder: - (context, name, child) => Text( - '‘$name’', - style: const TextStyle( - fontFamily: 'Permanent Marker', - fontSize: 30, - ), - ), + builder: (context, name, child) => Text( + '‘$name’', + style: const TextStyle( + fontFamily: 'Permanent Marker', + fontSize: 30, + ), + ), ), ], ), diff --git a/game_template/lib/src/style/confetti.dart b/game_template/lib/src/style/confetti.dart index 5036f5fc631..60a6dad7480 100644 --- a/game_template/lib/src/style/confetti.dart +++ b/game_template/lib/src/style/confetti.dart @@ -188,17 +188,17 @@ class _PaperSnipping { paint.color = backColor; } - final path = - Path()..addPolygon( - List.generate( - 4, - (index) => Offset( - position.x + corners[index].x * size, - position.y + corners[index].y * size * cosA, - ), + final path = Path() + ..addPolygon( + List.generate( + 4, + (index) => Offset( + position.x + corners[index].x * size, + position.y + corners[index].y * size * cosA, ), - true, - ); + ), + true, + ); canvas.drawPath(path, paint); } diff --git a/game_template/pubspec.yaml b/game_template/pubspec.yaml index de74a618cdf..e4cc187c521 100644 --- a/game_template/pubspec.yaml +++ b/game_template/pubspec.yaml @@ -1,21 +1,21 @@ name: game_template description: A mobile game built in Flutter. +version: 0.0.1+1 +resolution: workspace # Prevent accidental publishing to pub.dev. publish_to: 'none' -version: 0.0.1+1 environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - audioplayers: ^6.0.0 cupertino_icons: ^1.0.2 - go_router: ^16.1.0 + go_router: ^16.0.0 logging: ^1.1.0 provider: ^6.0.2 shared_preferences: ^2.0.13 @@ -23,14 +23,16 @@ dependencies: # If you don't need one of the following dependencies, # delete the relevant line below, and get rid of any Dart code # that references the dependency. - firebase_core: ^3.0.0 # Needed for Crashlytics below - firebase_crashlytics: ^4.0.0 # Error reporting + firebase_core: ^4.0.0 # Needed for Crashlytics below + firebase_crashlytics: ^5.0.0 # Error reporting games_services: ^4.0.0 # Achievements and leaderboards google_mobile_ads: ^6.0.0 # Ads in_app_purchase: ^3.0.1 # In-app purchases dev_dependencies: - flutter_lints: ^5.0.0 + analysis_defaults: + path: ../analysis_defaults + flutter_lints: ^6.0.0 flutter_test: sdk: flutter flutter_launcher_icons: ^0.14.0 diff --git a/gemini_tasks/lib/main.dart b/gemini_tasks/lib/main.dart index 33a43a0df77..bde51881dde 100644 --- a/gemini_tasks/lib/main.dart +++ b/gemini_tasks/lib/main.dart @@ -244,18 +244,19 @@ class _ExampleState extends State { actions.add(FunctionResponse(fn.name, task.toJson())); break; case 'get_completed_tasks': - var filter = - current.toList().where((e) => e.completed == true).toList(); + var filter = current + .toList() + .where((e) => e.completed == true) + .toList(); final name = args['name'] as String?; final description = args['description'] as String?; if (name != null) { filter = filter.where((e) => e.name.contains(name)).toList(); } if (description != null) { - filter = - filter - .where((e) => e.description?.contains(description) ?? false) - .toList(); + filter = filter + .where((e) => e.description?.contains(description) ?? false) + .toList(); } actions.add( FunctionResponse(fn.name, { @@ -264,18 +265,19 @@ class _ExampleState extends State { ); break; case 'get_active_tasks': - var filter = - current.toList().where((e) => e.completed == false).toList(); + var filter = current + .toList() + .where((e) => e.completed == false) + .toList(); final name = args['name'] as String?; final description = args['description'] as String?; if (name != null) { filter = filter.where((e) => e.name.contains(name)).toList(); } if (description != null) { - filter = - filter - .where((e) => e.description?.contains(description) ?? false) - .toList(); + filter = filter + .where((e) => e.description?.contains(description) ?? false) + .toList(); } actions.add( FunctionResponse(fn.name, { @@ -336,21 +338,20 @@ class _ExampleState extends State { final reversed = messages.value.reversed; return Scaffold( appBar: AppBar(title: Text(widget.title)), - body: - messages.value.isEmpty - ? const Center(child: Text('No tasks found')) - : ListView.builder( - padding: const EdgeInsets.all(8), - reverse: true, - itemCount: reversed.length, - itemBuilder: (context, index) { - final (sender, message) = reversed.elementAt(index); - return MessageWidget( - isFromUser: sender == Sender.user, - text: message, - ); - }, - ), + body: messages.value.isEmpty + ? const Center(child: Text('No tasks found')) + : ListView.builder( + padding: const EdgeInsets.all(8), + reverse: true, + itemCount: reversed.length, + itemBuilder: (context, index) { + final (sender, message) = reversed.elementAt(index); + return MessageWidget( + isFromUser: sender == Sender.user, + text: message, + ); + }, + ), bottomNavigationBar: BottomAppBar( padding: const EdgeInsets.all(8), child: Row( diff --git a/gemini_tasks/lib/widgets/api_key_widget.dart b/gemini_tasks/lib/widgets/api_key_widget.dart index 002d35f720e..341d079986a 100644 --- a/gemini_tasks/lib/widgets/api_key_widget.dart +++ b/gemini_tasks/lib/widgets/api_key_widget.dart @@ -44,11 +44,10 @@ class ApiKeyWidget extends StatelessWidget { Link( uri: Uri.https('aistudio.google.com', '/app/apikey'), target: LinkTarget.blank, - builder: - (context, followLink) => TextButton( - onPressed: followLink, - child: const Text('Get an API Key'), - ), + builder: (context, followLink) => TextButton( + onPressed: followLink, + child: const Text('Get an API Key'), + ), ), ], ), diff --git a/gemini_tasks/lib/widgets/message_widget.dart b/gemini_tasks/lib/widgets/message_widget.dart index 95dae91029a..74b45df1a8c 100644 --- a/gemini_tasks/lib/widgets/message_widget.dart +++ b/gemini_tasks/lib/widgets/message_widget.dart @@ -30,17 +30,17 @@ class MessageWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Row( - mainAxisAlignment: - isFromUser ? MainAxisAlignment.end : MainAxisAlignment.start, + mainAxisAlignment: isFromUser + ? MainAxisAlignment.end + : MainAxisAlignment.start, children: [ Flexible( child: Container( constraints: const BoxConstraints(maxWidth: 520), decoration: BoxDecoration( - color: - isFromUser - ? Theme.of(context).colorScheme.primaryContainer - : Theme.of(context).colorScheme.surfaceContainerHighest, + color: isFromUser + ? Theme.of(context).colorScheme.primaryContainer + : Theme.of(context).colorScheme.surfaceContainerHighest, borderRadius: BorderRadius.circular(18), ), padding: const EdgeInsets.symmetric(vertical: 15, horizontal: 20), diff --git a/gemini_tasks/pubspec.yaml b/gemini_tasks/pubspec.yaml index c25e8897105..93394317916 100644 --- a/gemini_tasks/pubspec.yaml +++ b/gemini_tasks/pubspec.yaml @@ -2,8 +2,9 @@ name: gemini_tasks description: "Sample app for the google_generative_ai package" publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -13,9 +14,11 @@ dependencies: url_launcher: ^6.2.6 dev_dependencies: + analysis_defaults: + path: ../analysis_defaults flutter_test: sdk: flutter - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 flutter: uses-material-design: true diff --git a/google_maps/lib/main.dart b/google_maps/lib/main.dart index 6f6eafb221b..629ecb685ef 100644 --- a/google_maps/lib/main.dart +++ b/google_maps/lib/main.dart @@ -47,7 +47,10 @@ class _MyAppState extends State { ), body: GoogleMap( onMapCreated: _onMapCreated, - initialCameraPosition: CameraPosition(target: _center, zoom: 11.0), + initialCameraPosition: CameraPosition( + target: _center, + zoom: 11.0, + ), markers: { const Marker( markerId: MarkerId('Sydney'), diff --git a/google_maps/lib/src/locations.g.dart b/google_maps/lib/src/locations.g.dart index 685fbd1d148..5d67b53c66d 100644 --- a/google_maps/lib/src/locations.g.dart +++ b/google_maps/lib/src/locations.g.dart @@ -69,17 +69,16 @@ Map _$OfficeToJson(Office instance) => { }; Locations _$LocationsFromJson(Map json) => Locations( - offices: - (json['offices'] as List) - .map((e) => Office.fromJson(e as Map)) - .toList(), - regions: - (json['regions'] as List) - .map((e) => Region.fromJson(e as Map)) - .toList(), + offices: (json['offices'] as List) + .map((e) => Office.fromJson(e as Map)) + .toList(), + regions: (json['regions'] as List) + .map((e) => Region.fromJson(e as Map)) + .toList(), ); -Map _$LocationsToJson(Locations instance) => { - 'offices': instance.offices, - 'regions': instance.regions, -}; +Map _$LocationsToJson(Locations instance) => + { + 'offices': instance.offices, + 'regions': instance.regions, + }; diff --git a/google_maps/pubspec.yaml b/google_maps/pubspec.yaml index 268697a4d15..b70df98c9c7 100644 --- a/google_maps/pubspec.yaml +++ b/google_maps/pubspec.yaml @@ -1,10 +1,11 @@ name: google_maps_in_flutter description: A new Flutter project. +resolution: workspace publish_to: 'none' version: 1.0.0+1 environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: diff --git a/infinite_list/lib/main.dart b/infinite_list/lib/main.dart index 3f9f795d8fd..c842643d703 100644 --- a/infinite_list/lib/main.dart +++ b/infinite_list/lib/main.dart @@ -22,7 +22,8 @@ const double windowWidth = 480; const double windowHeight = 854; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Infinite List'); setWindowMinSize(const Size(windowWidth, windowHeight)); @@ -68,26 +69,25 @@ class MyHomePage extends StatelessWidget { // listening to the catalog's `itemCount`, because that's all we need // at this level. selector: (context, catalog) => catalog.itemCount, - builder: - (context, itemCount, child) => ListView.builder( - // When `itemCount` is null, `ListView` assumes an infinite list. - // Once we provide a value, it will stop the scrolling beyond - // the last element. - itemCount: itemCount, - padding: const EdgeInsets.symmetric(vertical: 18), - itemBuilder: (context, index) { - // Every item of the `ListView` is individually listening - // to the catalog. - var catalog = Provider.of(context); + builder: (context, itemCount, child) => ListView.builder( + // When `itemCount` is null, `ListView` assumes an infinite list. + // Once we provide a value, it will stop the scrolling beyond + // the last element. + itemCount: itemCount, + padding: const EdgeInsets.symmetric(vertical: 18), + itemBuilder: (context, index) { + // Every item of the `ListView` is individually listening + // to the catalog. + var catalog = Provider.of(context); - // Catalog provides a single synchronous method for getting the - // current data. - return switch (catalog.getByIndex(index)) { - Item(isLoading: true) => const LoadingItemTile(), - var item => ItemTile(item: item), - }; - }, - ), + // Catalog provides a single synchronous method for getting the + // current data. + return switch (catalog.getByIndex(index)) { + Item(isLoading: true) => const LoadingItemTile(), + var item => ItemTile(item: item), + }; + }, + ), ), ); } diff --git a/infinite_list/lib/src/api/fetch.dart b/infinite_list/lib/src/api/fetch.dart index a5098762e46..48ac0bc0bb6 100644 --- a/infinite_list/lib/src/api/fetch.dart +++ b/infinite_list/lib/src/api/fetch.dart @@ -21,7 +21,11 @@ Future fetchPage(int startingIndex) async { // If the [startingIndex] is beyond the bounds of the catalog, an // empty page will be returned. if (startingIndex > catalogLength) { - return ItemPage(items: [], startingIndex: startingIndex, hasNext: false); + return ItemPage( + items: [], + startingIndex: startingIndex, + hasNext: false, + ); } // The page of items is generated here. diff --git a/infinite_list/lib/src/item_tile.dart b/infinite_list/lib/src/item_tile.dart index b79eaa34a39..e95c8dc70ed 100644 --- a/infinite_list/lib/src/item_tile.dart +++ b/infinite_list/lib/src/item_tile.dart @@ -22,7 +22,10 @@ class ItemTile extends StatelessWidget { aspectRatio: 1, child: Container(color: item.color), ), - title: Text(item.name, style: Theme.of(context).textTheme.titleLarge), + title: Text( + item.name, + style: Theme.of(context).textTheme.titleLarge, + ), trailing: Text('\$ ${(item.price / 100).toStringAsFixed(2)}'), ), ); diff --git a/infinite_list/pubspec.yaml b/infinite_list/pubspec.yaml index 5c43978176d..e439b822fd0 100644 --- a/infinite_list/pubspec.yaml +++ b/infinite_list/pubspec.yaml @@ -2,17 +2,17 @@ name: infinitelist description: > A sample implementation of an infinite list. publish_to: none +resolution: workspace version: 1.0.0+1 environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.2 - meta: ^1.3.0 + meta: 1.16.0 provider: ^6.0.2 window_size: git: @@ -24,6 +24,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/infinite_list/test/smoke_test.dart b/infinite_list/test/smoke_test.dart index 254295df036..556f3f4e052 100644 --- a/infinite_list/test/smoke_test.dart +++ b/infinite_list/test/smoke_test.dart @@ -25,7 +25,11 @@ void main() { expect(find.text('Color #1'), findsOneWidget); // Flinging up quickly (i.e. scrolling down). - await tester.fling(find.byType(ListView), const Offset(0, -2000), 5000); + await tester.fling( + find.byType(ListView), + const Offset(0, -2000), + 5000, + ); // As we scroll down, we should see more items loading. expect(find.text('...'), findsWidgets); diff --git a/ios_app_clip/lib/main.dart b/ios_app_clip/lib/main.dart index f37dfd2f340..4b26c031709 100644 --- a/ios_app_clip/lib/main.dart +++ b/ios_app_clip/lib/main.dart @@ -37,7 +37,9 @@ class _DemoState extends State { Widget build(BuildContext context) { return CupertinoApp( home: CupertinoPageScaffold( - navigationBar: const CupertinoNavigationBar(middle: Text('App Clip')), + navigationBar: const CupertinoNavigationBar( + middle: Text('App Clip'), + ), child: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, diff --git a/ios_app_clip/pubspec.yaml b/ios_app_clip/pubspec.yaml index b67d9febdb5..4aad2d150d8 100644 --- a/ios_app_clip/pubspec.yaml +++ b/ios_app_clip/pubspec.yaml @@ -1,17 +1,15 @@ name: ios_app_clip description: An example Flutter project that can build as an App Clip. - publish_to: "none" # Remove this line if you wish to publish to pub.dev - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.0 device_info: ^2.0.3 @@ -20,5 +18,4 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: diff --git a/isolate_example/lib/data_transfer_page.dart b/isolate_example/lib/data_transfer_page.dart index b8adad6dde9..9dcded07a79 100644 --- a/isolate_example/lib/data_transfer_page.dart +++ b/isolate_example/lib/data_transfer_page.dart @@ -74,7 +74,9 @@ class DataTransferPage extends StatelessWidget { }, ), onPressed: () => controller.generateRandomNumbers(true), - child: const Text('Transfer Data with TransferableTypedData'), + child: const Text( + 'Transfer Data with TransferableTypedData', + ), ), ElevatedButton( style: ElevatedButton.styleFrom( @@ -207,8 +209,9 @@ class RunningList extends StatelessWidget { @override Widget build(BuildContext context) { - final progress = - Provider.of(context).currentProgress; + final progress = Provider.of( + context, + ).currentProgress; return DecoratedBox( decoration: BoxDecoration(color: Colors.grey[200]), diff --git a/isolate_example/lib/infinite_process_page.dart b/isolate_example/lib/infinite_process_page.dart index 465d2135bd9..a17d05c4b64 100644 --- a/isolate_example/lib/infinite_process_page.dart +++ b/isolate_example/lib/infinite_process_page.dart @@ -35,7 +35,9 @@ class InfiniteProcessPage extends StatelessWidget { @override Widget build(context) { - final controller = Provider.of(context); + final controller = Provider.of( + context, + ); return SafeArea( child: Column( @@ -196,7 +198,9 @@ class RunningList extends StatelessWidget { @override Widget build(context) { - final controller = Provider.of(context); + final controller = Provider.of( + context, + ); var sums = controller.currentResults; @@ -208,10 +212,9 @@ class RunningList extends StatelessWidget { return Column( children: [ Card( - color: - (controller.created && !controller.paused) - ? Colors.lightGreenAccent - : Colors.deepOrangeAccent, + color: (controller.created && !controller.paused) + ? Colors.lightGreenAccent + : Colors.deepOrangeAccent, child: ListTile( leading: Text('${sums.length - index}.'), title: Text('${sums[index]}.'), diff --git a/isolate_example/lib/main.dart b/isolate_example/lib/main.dart index 86fbb17fb03..f7f912d8f95 100644 --- a/isolate_example/lib/main.dart +++ b/isolate_example/lib/main.dart @@ -31,7 +31,8 @@ const double windowWidth = 1024; const double windowHeight = 800; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Isolate Example'); setWindowMinSize(const Size(windowWidth, windowHeight)); diff --git a/isolate_example/lib/performance_page.dart b/isolate_example/lib/performance_page.dart index 1d65447b988..6fa1c3ab574 100644 --- a/isolate_example/lib/performance_page.dart +++ b/isolate_example/lib/performance_page.dart @@ -57,8 +57,9 @@ class _PerformancePageState extends State { return ElevatedButton( style: ElevatedButton.styleFrom(elevation: 8.0), onPressed: switch (snapshot.connectionState) { - ConnectionState.done => - () => handleComputeOnMain(context), + ConnectionState.done => () => handleComputeOnMain( + context, + ), _ => null, }, child: const Text('Compute on Main'), @@ -71,8 +72,9 @@ class _PerformancePageState extends State { return ElevatedButton( style: ElevatedButton.styleFrom(elevation: 8.0), onPressed: switch (snapshot.connectionState) { - ConnectionState.done => - () => handleComputeOnSecondary(context), + ConnectionState.done => () => handleComputeOnSecondary( + context, + ), _ => null, }, child: const Text('Compute on Secondary'), @@ -88,12 +90,12 @@ class _PerformancePageState extends State { } void handleComputeOnMain(BuildContext context) { - var future = - computeOnMainIsolate()..then((_) { - var snackBar = const SnackBar(content: Text('Main Isolate Done!')); - if (!context.mounted) return; - ScaffoldMessenger.of(context).showSnackBar(snackBar); - }); + var future = computeOnMainIsolate() + ..then((_) { + var snackBar = const SnackBar(content: Text('Main Isolate Done!')); + if (!context.mounted) return; + ScaffoldMessenger.of(context).showSnackBar(snackBar); + }); setState(() { computeFuture = future; @@ -101,14 +103,14 @@ class _PerformancePageState extends State { } void handleComputeOnSecondary(BuildContext context) { - var future = - computeOnSecondaryIsolate()..then((_) { - var snackBar = const SnackBar( - content: Text('Secondary Isolate Done!'), - ); - if (!context.mounted) return; - ScaffoldMessenger.of(context).showSnackBar(snackBar); - }); + var future = computeOnSecondaryIsolate() + ..then((_) { + var snackBar = const SnackBar( + content: Text('Secondary Isolate Done!'), + ); + if (!context.mounted) return; + ScaffoldMessenger.of(context).showSnackBar(snackBar); + }); setState(() { computeFuture = future; diff --git a/isolate_example/pubspec.yaml b/isolate_example/pubspec.yaml index b515eec88ab..69e12ee54c0 100644 --- a/isolate_example/pubspec.yaml +++ b/isolate_example/pubspec.yaml @@ -2,9 +2,10 @@ name: isolate_example description: A Flutter sample to demonstrate isolates version: 1.0.0+1 publish_to: none +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -20,6 +21,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/jsonexample/README.md b/jsonexample/README.md deleted file mode 100644 index d3835cb877d..00000000000 --- a/jsonexample/README.md +++ /dev/null @@ -1,10 +0,0 @@ -## `jsonexample` sample retired - -The `jsonexample` sample has reached the end of it's useful life. It was great code -when it has written, but the world has changed. Dart 3 introduced Patterns and -records. There is also various JSON parsing tools like `json_serializable`. - -For further information, please see: - - The [Dive into Dart's patterns and records](https://codelabs.developers.google.com/codelabs/dart-patterns-records) - codelab for a deep dive into Dart 3's patterns and records with an application to parsing JSON - - The Flutter.dev documentation on [JSON and serialization](https://docs.flutter.dev/data-and-backend/serialization/json) \ No newline at end of file diff --git a/material_3_demo/lib/main.dart b/material_3_demo/lib/main.dart index 653844e5fcc..07c5b86c512 100644 --- a/material_3_demo/lib/main.dart +++ b/material_3_demo/lib/main.dart @@ -75,20 +75,19 @@ class _AppState extends State { theme: ThemeData( colorSchemeSeed: _colorSelectionMethod == ColorSelectionMethod.colorSeed - ? _colorSelected.color - : null, - colorScheme: - _colorSelectionMethod == ColorSelectionMethod.image - ? _imageColorScheme - : null, + ? _colorSelected.color + : null, + colorScheme: _colorSelectionMethod == ColorSelectionMethod.image + ? _imageColorScheme + : null, useMaterial3: _useMaterial3, brightness: Brightness.light, ), darkTheme: ThemeData( colorSchemeSeed: _colorSelectionMethod == ColorSelectionMethod.colorSeed - ? _colorSelected.color - : _imageColorScheme!.primary, + ? _colorSelected.color + : _imageColorScheme!.primary, useMaterial3: _useMaterial3, brightness: Brightness.dark, ), diff --git a/material_3_demo/lib/src/animations.dart b/material_3_demo/lib/src/animations.dart index 301dba52913..54559b84ac7 100644 --- a/material_3_demo/lib/src/animations.dart +++ b/material_3_demo/lib/src/animations.dart @@ -8,7 +8,11 @@ class SizeAnimation extends CurvedAnimation { SizeAnimation(Animation parent) : super( parent: parent, - curve: const Interval(0.2, 0.8, curve: Curves.easeInOutCubicEmphasized), + curve: const Interval( + 0.2, + 0.8, + curve: Curves.easeInOutCubicEmphasized, + ), reverseCurve: Interval( 0, 0.2, @@ -21,7 +25,11 @@ class OffsetAnimation extends CurvedAnimation { OffsetAnimation(Animation parent) : super( parent: parent, - curve: const Interval(0.4, 1.0, curve: Curves.easeInOutCubicEmphasized), + curve: const Interval( + 0.4, + 1.0, + curve: Curves.easeInOutCubicEmphasized, + ), reverseCurve: Interval( 0, 0.2, diff --git a/material_3_demo/lib/src/buttons.dart b/material_3_demo/lib/src/buttons.dart index a5b1df75871..7ec5153975a 100644 --- a/material_3_demo/lib/src/buttons.dart +++ b/material_3_demo/lib/src/buttons.dart @@ -23,10 +23,9 @@ class BrightnessButton extends StatelessWidget { preferBelow: showTooltipBelow, message: 'Toggle brightness', child: IconButton( - icon: - isBright - ? const Icon(Icons.dark_mode_outlined) - : const Icon(Icons.light_mode_outlined), + icon: isBright + ? const Icon(Icons.dark_mode_outlined) + : const Icon(Icons.light_mode_outlined), onPressed: () => handleBrightnessChange(!isBright), ), ); @@ -50,10 +49,9 @@ class Material3Button extends StatelessWidget { preferBelow: showTooltipBelow, message: 'Switch to Material ${useMaterial3 ? 2 : 3}', child: IconButton( - icon: - useMaterial3 - ? const Icon(Icons.filter_2) - : const Icon(Icons.filter_3), + icon: useMaterial3 + ? const Icon(Icons.filter_2) + : const Icon(Icons.filter_3), onPressed: handleMaterialVersionChange, ), ); @@ -77,7 +75,9 @@ class ColorSeedButton extends StatelessWidget { return PopupMenuButton( icon: const Icon(Icons.palette_outlined), tooltip: 'Select a seed color', - shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(10), + ), itemBuilder: (context) { return List.generate(ColorSeed.values.length, (index) { ColorSeed currentColor = ColorSeed.values[index]; @@ -130,7 +130,9 @@ class ColorImageButton extends StatelessWidget { return PopupMenuButton( icon: const Icon(Icons.image_outlined), tooltip: 'Select a color extraction image', - shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10)), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(10), + ), itemBuilder: (context) { return List.generate(ColorImageProvider.values.length, (index) { final currentImageProvider = ColorImageProvider.values[index]; diff --git a/material_3_demo/lib/src/color_box.dart b/material_3_demo/lib/src/color_box.dart index 06a168fb87b..e5032d8615c 100644 --- a/material_3_demo/lib/src/color_box.dart +++ b/material_3_demo/lib/src/color_box.dart @@ -77,7 +77,9 @@ class _ColorBoxState extends State { await Clipboard.setData(data); messenger.hideCurrentSnackBar(); messenger.showSnackBar( - SnackBar(content: Text('Copied $hex to clipboard')), + SnackBar( + content: Text('Copied $hex to clipboard'), + ), ); }, ), diff --git a/material_3_demo/lib/src/color_palettes_screen.dart b/material_3_demo/lib/src/color_palettes_screen.dart index 0f915753e4e..933beef968b 100644 --- a/material_3_demo/lib/src/color_palettes_screen.dart +++ b/material_3_demo/lib/src/color_palettes_screen.dart @@ -61,16 +61,15 @@ class ColorPalettesScreen extends StatelessWidget { TextSpan( text: 'dynamic_color', style: const TextStyle(decoration: TextDecoration.underline), - recognizer: - TapGestureRecognizer() - ..onTap = () async { - final url = Uri.parse( - 'https://pub.dev/packages/dynamic_color', - ); - if (!await launchUrl(url)) { - throw Exception('Could not launch $url'); - } - }, + recognizer: TapGestureRecognizer() + ..onTap = () async { + final url = Uri.parse( + 'https://pub.dev/packages/dynamic_color', + ); + if (!await launchUrl(url)) { + throw Exception('Could not launch $url'); + } + }, ), const TextSpan(text: ' package.'), ], @@ -454,7 +453,9 @@ class ColorChip extends StatelessWidget { padding: const EdgeInsets.all(16), child: Row( children: [ - Expanded(child: Text(label, style: TextStyle(color: labelColor))), + Expanded( + child: Text(label, style: TextStyle(color: labelColor)), + ), ], ), ), diff --git a/material_3_demo/lib/src/component_screen.dart b/material_3_demo/lib/src/component_screen.dart index 4d696e3fe7e..78f0b77722e 100644 --- a/material_3_demo/lib/src/component_screen.dart +++ b/material_3_demo/lib/src/component_screen.dart @@ -49,10 +49,9 @@ class FirstComponentList extends StatelessWidget { child: CustomScrollView( slivers: [ SliverPadding( - padding: - showSecondList - ? const EdgeInsetsDirectional.only(end: smallSpacing) - : EdgeInsets.zero, + padding: showSecondList + ? const EdgeInsetsDirectional.only(end: smallSpacing) + : EdgeInsets.zero, sliver: SliverList( delegate: BuildSlivers( heights: heights, @@ -123,7 +122,11 @@ class SecondComponentList extends StatelessWidget { // as the contents of the list are exposed for the first time, and // then remain fixed. class _CacheHeight extends SingleChildRenderObjectWidget { - const _CacheHeight({super.child, required this.heights, required this.index}); + const _CacheHeight({ + super.child, + required this.heights, + required this.index, + }); final List heights; final int index; @@ -537,7 +540,9 @@ class Cards extends StatelessWidget { child: Card( elevation: 0, shape: RoundedRectangleBorder( - side: BorderSide(color: Theme.of(context).colorScheme.outline), + side: BorderSide( + color: Theme.of(context).colorScheme.outline, + ), borderRadius: const BorderRadius.all(Radius.circular(12)), ), child: Container( @@ -626,7 +631,9 @@ class _TextFieldsState extends State { controller: _controllerFilled, decoration: InputDecoration( prefixIcon: const Icon(Icons.search), - suffixIcon: _ClearButton(controller: _controllerFilled), + suffixIcon: _ClearButton( + controller: _controllerFilled, + ), labelText: 'Filled', hintText: 'hint text', helperText: 'supporting text', @@ -645,7 +652,9 @@ class _TextFieldsState extends State { enabled: false, decoration: InputDecoration( prefixIcon: const Icon(Icons.search), - suffixIcon: _ClearButton(controller: _controllerFilled), + suffixIcon: _ClearButton( + controller: _controllerFilled, + ), labelText: 'Disabled', hintText: 'hint text', helperText: 'supporting text', @@ -737,51 +746,49 @@ class _DialogsState extends State { void openDialog(BuildContext context) { showDialog( context: context, - builder: - (context) => AlertDialog( - title: const Text('What is a dialog?'), - content: const Text( - 'A dialog is a type of modal window that appears in front of app content to provide critical information, or prompt for a decision to be made.', - ), - actions: [ - TextButton( - child: const Text('Dismiss'), - onPressed: () => Navigator.of(context).pop(), - ), - FilledButton( - child: const Text('Okay'), - onPressed: () => Navigator.of(context).pop(), - ), - ], + builder: (context) => AlertDialog( + title: const Text('What is a dialog?'), + content: const Text( + 'A dialog is a type of modal window that appears in front of app content to provide critical information, or prompt for a decision to be made.', + ), + actions: [ + TextButton( + child: const Text('Dismiss'), + onPressed: () => Navigator.of(context).pop(), + ), + FilledButton( + child: const Text('Okay'), + onPressed: () => Navigator.of(context).pop(), ), + ], + ), ); } void openFullscreenDialog(BuildContext context) { showDialog( context: context, - builder: - (context) => Dialog.fullscreen( - child: Padding( - padding: const EdgeInsets.all(20.0), - child: Scaffold( - appBar: AppBar( - title: const Text('Full-screen dialog'), - centerTitle: false, - leading: IconButton( - icon: const Icon(Icons.close), - onPressed: () => Navigator.of(context).pop(), - ), - actions: [ - TextButton( - child: const Text('Close'), - onPressed: () => Navigator.of(context).pop(), - ), - ], - ), + builder: (context) => Dialog.fullscreen( + child: Padding( + padding: const EdgeInsets.all(20.0), + child: Scaffold( + appBar: AppBar( + title: const Text('Full-screen dialog'), + centerTitle: false, + leading: IconButton( + icon: const Icon(Icons.close), + onPressed: () => Navigator.of(context).pop(), ), + actions: [ + TextButton( + child: const Text('Close'), + onPressed: () => Navigator.of(context).pop(), + ), + ], ), ), + ), + ), ); } @@ -874,26 +881,24 @@ class _SwitchRowState extends State { // TODO: use SwitchListTile when thumbIcon is available https://github.com/flutter/flutter/issues/118616 Switch( value: value0, - onChanged: - widget.isEnabled - ? (value) { - setState(() { - value0 = value; - }); - } - : null, + onChanged: widget.isEnabled + ? (value) { + setState(() { + value0 = value; + }); + } + : null, ), Switch( thumbIcon: thumbIcon, value: value1, - onChanged: - widget.isEnabled - ? (value) { - setState(() { - value1 = value; - }); - } - : null, + onChanged: widget.isEnabled + ? (value) { + setState(() { + value1 = value; + }); + } + : null, ), ], ); @@ -1132,7 +1137,10 @@ List barWithBadgeDestinations = [ ), NavigationDestination( tooltip: '', - icon: Badge.count(count: 3, child: const Icon(Icons.videocam_outlined)), + icon: Badge.count( + count: 3, + child: const Icon(Icons.videocam_outlined), + ), label: 'Meet', selectedIcon: Badge.count(count: 3, child: const Icon(Icons.videocam)), ), @@ -1186,12 +1194,11 @@ class _NavigationBarsState extends State { }); if (!widget.isExampleBar) widget.onSelectItem!(index); }, - destinations: - widget.isExampleBar && widget.isBadgeExample - ? barWithBadgeDestinations - : widget.isExampleBar - ? exampleBarDestinations - : appBarDestinations, + destinations: widget.isExampleBar && widget.isBadgeExample + ? barWithBadgeDestinations + : widget.isExampleBar + ? exampleBarDestinations + : appBarDestinations, ), ); @@ -1369,7 +1376,10 @@ class _ChipsState extends State { onPressed: () {}, onDeleted: () {}, ), - ActionChip(label: const Text('Suggestion'), onPressed: () {}), + ActionChip( + label: const Text('Suggestion'), + onPressed: () {}, + ), ], ), colDivider, @@ -1645,9 +1655,18 @@ class _BottomSheetSectionState extends State { IconButton(onPressed: () {}, icon: const Icon(Icons.share_outlined)), IconButton(onPressed: () {}, icon: const Icon(Icons.add)), IconButton(onPressed: () {}, icon: const Icon(Icons.delete_outline)), - IconButton(onPressed: () {}, icon: const Icon(Icons.archive_outlined)), - IconButton(onPressed: () {}, icon: const Icon(Icons.settings_outlined)), - IconButton(onPressed: () {}, icon: const Icon(Icons.favorite_border)), + IconButton( + onPressed: () {}, + icon: const Icon(Icons.archive_outlined), + ), + IconButton( + onPressed: () {}, + icon: const Icon(Icons.settings_outlined), + ), + IconButton( + onPressed: () {}, + icon: const Icon(Icons.favorite_border), + ), ]; List labelList = const [ Text('Share'), @@ -1690,7 +1709,9 @@ class _BottomSheetSectionState extends State { return SizedBox( height: 150, child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 32.0), + padding: const EdgeInsets.symmetric( + horizontal: 32.0, + ), child: ListView( shrinkWrap: true, scrollDirection: Axis.horizontal, @@ -1731,7 +1752,9 @@ class _BottomSheetSectionState extends State { return SizedBox( height: 150, child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 32.0), + padding: const EdgeInsets.symmetric( + horizontal: 32.0, + ), child: ListView( shrinkWrap: true, scrollDirection: Axis.horizontal, @@ -1817,9 +1840,18 @@ class IconButtonAnchorExample extends StatelessWidget { MenuItemButton(child: const Text('Menu 2'), onPressed: () {}), SubmenuButton( menuChildren: [ - MenuItemButton(onPressed: () {}, child: const Text('Menu 3.1')), - MenuItemButton(onPressed: () {}, child: const Text('Menu 3.2')), - MenuItemButton(onPressed: () {}, child: const Text('Menu 3.3')), + MenuItemButton( + onPressed: () {}, + child: const Text('Menu 3.1'), + ), + MenuItemButton( + onPressed: () {}, + child: const Text('Menu 3.2'), + ), + MenuItemButton( + onPressed: () {}, + child: const Text('Menu 3.3'), + ), ], child: const Text('Menu 3'), ), @@ -1920,7 +1952,10 @@ class _NavigationDrawerSectionState extends State { children: [ Padding( padding: const EdgeInsets.fromLTRB(28, 16, 16, 10), - child: Text('Mail', style: Theme.of(context).textTheme.titleSmall), + child: Text( + 'Mail', + style: Theme.of(context).textTheme.titleSmall, + ), ), ...destinations.map((destination) { return NavigationDrawerDestination( @@ -1932,7 +1967,10 @@ class _NavigationDrawerSectionState extends State { const Divider(indent: 28, endIndent: 28), Padding( padding: const EdgeInsets.fromLTRB(28, 16, 16, 10), - child: Text('Labels', style: Theme.of(context).textTheme.titleSmall), + child: Text( + 'Labels', + style: Theme.of(context).textTheme.titleSmall, + ), ), ...labelDestinations.map((destination) { return NavigationDrawerDestination( @@ -1955,14 +1993,26 @@ class ExampleDestination { } const List destinations = [ - ExampleDestination('Inbox', Icon(Icons.inbox_outlined), Icon(Icons.inbox)), - ExampleDestination('Outbox', Icon(Icons.send_outlined), Icon(Icons.send)), + ExampleDestination( + 'Inbox', + Icon(Icons.inbox_outlined), + Icon(Icons.inbox), + ), + ExampleDestination( + 'Outbox', + Icon(Icons.send_outlined), + Icon(Icons.send), + ), ExampleDestination( 'Favorites', Icon(Icons.favorite_outline), Icon(Icons.favorite), ), - ExampleDestination('Trash', Icon(Icons.delete_outline), Icon(Icons.delete)), + ExampleDestination( + 'Trash', + Icon(Icons.delete_outline), + Icon(Icons.delete), + ), ]; const List labelDestinations = [ @@ -1976,7 +2026,11 @@ const List labelDestinations = [ Icon(Icons.bookmark_border), Icon(Icons.bookmark), ), - ExampleDestination('Work', Icon(Icons.bookmark_border), Icon(Icons.bookmark)), + ExampleDestination( + 'Work', + Icon(Icons.bookmark_border), + Icon(Icons.bookmark), + ), ]; class NavigationRails extends StatelessWidget { @@ -2217,7 +2271,9 @@ class _MenusState extends State { label: const Text('Color'), enableFilter: true, dropdownMenuEntries: colorEntries, - inputDecorationTheme: const InputDecorationTheme(filled: true), + inputDecorationTheme: const InputDecorationTheme( + filled: true, + ), onSelected: (color) { setState(() { selectedColor = color; @@ -2441,7 +2497,9 @@ class Carousels extends StatelessWidget { child: CarouselView( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10), - side: BorderSide(color: Theme.of(context).colorScheme.outline), + side: BorderSide( + color: Theme.of(context).colorScheme.outline, + ), ), shrinkExtent: 100, itemExtent: 180, @@ -2461,7 +2519,9 @@ class Carousels extends StatelessWidget { itemSnapping: true, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(10), - side: BorderSide(color: Theme.of(context).colorScheme.outline), + side: BorderSide( + color: Theme.of(context).colorScheme.outline, + ), ), shrinkExtent: 100, itemExtent: 180, @@ -2536,9 +2596,13 @@ class _ComponentDecorationState extends State { elevation: 0, shape: RoundedRectangleBorder( side: BorderSide( - color: Theme.of(context).colorScheme.outlineVariant, + color: Theme.of( + context, + ).colorScheme.outlineVariant, + ), + borderRadius: const BorderRadius.all( + Radius.circular(12), ), - borderRadius: const BorderRadius.all(Radius.circular(12)), ), child: Padding( padding: const EdgeInsets.symmetric( diff --git a/material_3_demo/lib/src/elevation_screen.dart b/material_3_demo/lib/src/elevation_screen.dart index 87c4784d5a7..3ea88f8697e 100644 --- a/material_3_demo/lib/src/elevation_screen.dart +++ b/material_3_demo/lib/src/elevation_screen.dart @@ -65,7 +65,11 @@ class ElevationScreen extends StatelessWidget { const double narrowScreenWidthThreshold = 450; class ElevationGrid extends StatelessWidget { - const ElevationGrid({super.key, this.shadowColor, this.surfaceTintColor}); + const ElevationGrid({ + super.key, + this.shadowColor, + this.surfaceTintColor, + }); final Color? shadowColor; final Color? surfaceTintColor; @@ -135,7 +139,9 @@ class _ElevationCardState extends State { @override Widget build(BuildContext context) { - const BorderRadius borderRadius = BorderRadius.all(Radius.circular(4.0)); + const BorderRadius borderRadius = BorderRadius.all( + Radius.circular(4.0), + ); final Color color = Theme.of(context).colorScheme.surface; return Padding( diff --git a/material_3_demo/lib/src/expanded_image_color_action.dart b/material_3_demo/lib/src/expanded_image_color_action.dart index 7c99add66d7..4cd640e79ad 100644 --- a/material_3_demo/lib/src/expanded_image_color_action.dart +++ b/material_3_demo/lib/src/expanded_image_color_action.dart @@ -32,9 +32,9 @@ class ExpandedImageColorAction extends StatelessWidget { index: i, select: imageSelected == ColorImageProvider.values[i] && - colorSelectionMethod == ColorSelectionMethod.image - ? null - : () => handleImageSelect(i), + colorSelectionMethod == ColorSelectionMethod.image + ? null + : () => handleImageSelect(i), ), ), ), @@ -66,7 +66,9 @@ class _ImageButton extends StatelessWidget { child: ClipRRect( borderRadius: BorderRadius.circular(4.0), child: Image( - image: NetworkImage(ColorImageProvider.values[index].url), + image: NetworkImage( + ColorImageProvider.values[index].url, + ), ), ), ), diff --git a/material_3_demo/lib/src/home.dart b/material_3_demo/lib/src/home.dart index ec11e61ef25..8b2cadfe3e7 100644 --- a/material_3_demo/lib/src/home.dart +++ b/material_3_demo/lib/src/home.dart @@ -133,32 +133,30 @@ class _HomeState extends State with SingleTickerProviderStateMixin { PreferredSizeWidget _createAppBar() { return AppBar( - title: - widget.useMaterial3 - ? const Text('Material 3') - : const Text('Material 2'), - actions: - !showMediumSizeLayout && !showLargeSizeLayout - ? [ - BrightnessButton( - handleBrightnessChange: widget.handleBrightnessChange, - ), - Material3Button( - handleMaterialVersionChange: - widget.handleMaterialVersionChange, - ), - ColorSeedButton( - handleColorSelect: widget.handleColorSelect, - colorSelected: widget.colorSelected, - colorSelectionMethod: widget.colorSelectionMethod, - ), - ColorImageButton( - handleImageSelect: widget.handleImageSelect, - imageSelected: widget.imageSelected, - colorSelectionMethod: widget.colorSelectionMethod, - ), - ] - : [Container()], + title: widget.useMaterial3 + ? const Text('Material 3') + : const Text('Material 2'), + actions: !showMediumSizeLayout && !showLargeSizeLayout + ? [ + BrightnessButton( + handleBrightnessChange: widget.handleBrightnessChange, + ), + Material3Button( + handleMaterialVersionChange: + widget.handleMaterialVersionChange, + ), + ColorSeedButton( + handleColorSelect: widget.handleColorSelect, + colorSelected: widget.colorSelected, + colorSelectionMethod: widget.colorSelectionMethod, + ), + ColorImageButton( + handleImageSelect: widget.handleImageSelect, + imageSelected: widget.imageSelected, + colorSelectionMethod: widget.colorSelectionMethod, + ), + ] + : [Container()], ); } @@ -221,21 +219,20 @@ class _HomeState extends State with SingleTickerProviderStateMixin { trailing: Expanded( child: Padding( padding: const EdgeInsets.only(bottom: 20), - child: - showLargeSizeLayout - ? ExpandedTrailingActions( - useLightMode: widget.useLightMode, - handleBrightnessChange: widget.handleBrightnessChange, - useMaterial3: widget.useMaterial3, - handleMaterialVersionChange: - widget.handleMaterialVersionChange, - handleImageSelect: widget.handleImageSelect, - handleColorSelect: widget.handleColorSelect, - colorSelectionMethod: widget.colorSelectionMethod, - imageSelected: widget.imageSelected, - colorSelected: widget.colorSelected, - ) - : _trailingActions(), + child: showLargeSizeLayout + ? ExpandedTrailingActions( + useLightMode: widget.useLightMode, + handleBrightnessChange: widget.handleBrightnessChange, + useMaterial3: widget.useMaterial3, + handleMaterialVersionChange: + widget.handleMaterialVersionChange, + handleImageSelect: widget.handleImageSelect, + handleColorSelect: widget.handleColorSelect, + colorSelectionMethod: widget.colorSelectionMethod, + imageSelected: widget.imageSelected, + colorSelected: widget.colorSelected, + ) + : _trailingActions(), ), ), ), @@ -258,7 +255,10 @@ class _HomeState extends State with SingleTickerProviderStateMixin { final List _navRailDestinations = appBarDestinations .map( (destination) => NavigationRailDestination( - icon: Tooltip(message: destination.label, child: destination.icon), + icon: Tooltip( + message: destination.label, + child: destination.icon, + ), selectedIcon: Tooltip( message: destination.label, child: destination.selectedIcon, diff --git a/material_3_demo/lib/src/scheme.dart b/material_3_demo/lib/src/scheme.dart index 66f604e83ec..6458af2d512 100644 --- a/material_3_demo/lib/src/scheme.dart +++ b/material_3_demo/lib/src/scheme.dart @@ -46,10 +46,9 @@ class _SchemePreviewState extends State { color: scheme.surface, borderRadius: BorderRadius.circular(12), border: Border.all( - color: - theme.brightness == widget.brightness - ? colors.outlineVariant - : Colors.transparent, + color: theme.brightness == widget.brightness + ? colors.outlineVariant + : Colors.transparent, ), ), padding: const EdgeInsets.only(top: 16, left: 16, right: 16), diff --git a/material_3_demo/lib/src/typography_screen.dart b/material_3_demo/lib/src/typography_screen.dart index 021143d5a17..e23ef5da0dd 100644 --- a/material_3_demo/lib/src/typography_screen.dart +++ b/material_3_demo/lib/src/typography_screen.dart @@ -9,9 +9,12 @@ class TypographyScreen extends StatelessWidget { @override Widget build(BuildContext context) { - final textTheme = Theme.of( - context, - ).textTheme.apply(displayColor: Theme.of(context).colorScheme.onSurface); + final textTheme = + Theme.of( + context, + ).textTheme.apply( + displayColor: Theme.of(context).colorScheme.onSurface, + ); return Expanded( child: ListView( children: [ @@ -40,15 +43,42 @@ class TypographyScreen extends StatelessWidget { name: 'Headline Small', style: textTheme.headlineSmall!, ), - TextStyleExample(name: 'Title Large', style: textTheme.titleLarge!), - TextStyleExample(name: 'Title Medium', style: textTheme.titleMedium!), - TextStyleExample(name: 'Title Small', style: textTheme.titleSmall!), - TextStyleExample(name: 'Label Large', style: textTheme.labelLarge!), - TextStyleExample(name: 'Label Medium', style: textTheme.labelMedium!), - TextStyleExample(name: 'Label Small', style: textTheme.labelSmall!), - TextStyleExample(name: 'Body Large', style: textTheme.bodyLarge!), - TextStyleExample(name: 'Body Medium', style: textTheme.bodyMedium!), - TextStyleExample(name: 'Body Small', style: textTheme.bodySmall!), + TextStyleExample( + name: 'Title Large', + style: textTheme.titleLarge!, + ), + TextStyleExample( + name: 'Title Medium', + style: textTheme.titleMedium!, + ), + TextStyleExample( + name: 'Title Small', + style: textTheme.titleSmall!, + ), + TextStyleExample( + name: 'Label Large', + style: textTheme.labelLarge!, + ), + TextStyleExample( + name: 'Label Medium', + style: textTheme.labelMedium!, + ), + TextStyleExample( + name: 'Label Small', + style: textTheme.labelSmall!, + ), + TextStyleExample( + name: 'Body Large', + style: textTheme.bodyLarge!, + ), + TextStyleExample( + name: 'Body Medium', + style: textTheme.bodyMedium!, + ), + TextStyleExample( + name: 'Body Small', + style: textTheme.bodySmall!, + ), ], ), ); @@ -56,7 +86,11 @@ class TypographyScreen extends StatelessWidget { } class TextStyleExample extends StatelessWidget { - const TextStyleExample({super.key, required this.name, required this.style}); + const TextStyleExample({ + super.key, + required this.name, + required this.style, + }); final String name; final TextStyle style; diff --git a/material_3_demo/pubspec.yaml b/material_3_demo/pubspec.yaml index c42109ea3f6..06e39a58411 100644 --- a/material_3_demo/pubspec.yaml +++ b/material_3_demo/pubspec.yaml @@ -2,18 +2,16 @@ name: material_3_demo description: A Flutter project showcasing supported Material 3 components, typography, color system and elevation. Supports different light/dark mode, color seed, and comparison to Material 2. - publish_to: "none" - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.2 url_launcher: ^6.1.8 @@ -24,6 +22,5 @@ dev_dependencies: sdk: flutter integration_test: sdk: flutter - flutter: uses-material-design: true diff --git a/material_3_demo/test/color_screen_test.dart b/material_3_demo/test/color_screen_test.dart index 0f525961eec..5fd534e45ff 100644 --- a/material_3_demo/test/color_screen_test.dart +++ b/material_3_demo/test/color_screen_test.dart @@ -90,7 +90,10 @@ void main() { ); expect(find.text('Light ColorScheme'), findsOneWidget); expect(find.text('Dark ColorScheme'), findsOneWidget); - expect(find.byType(SchemePreview, skipOffstage: false), findsNWidgets(2)); + expect( + find.byType(SchemePreview, skipOffstage: false), + findsNWidgets(2), + ); }); testWidgets( @@ -107,7 +110,9 @@ void main() { const testLabel = 'Test Label'; const testTone = '50'; - final gesture = await tester.createGesture(kind: PointerDeviceKind.mouse); + final gesture = await tester.createGesture( + kind: PointerDeviceKind.mouse, + ); // Wrap in MaterialApp + Scaffold so we can show SnackBars await tester.pumpWidget( diff --git a/material_3_demo/test/component_screen_test.dart b/material_3_demo/test/component_screen_test.dart index 5bd1615d896..7f088a7a7a1 100644 --- a/material_3_demo/test/component_screen_test.dart +++ b/material_3_demo/test/component_screen_test.dart @@ -20,14 +20,26 @@ void main() { findsOneWidget, ); expect(find.widgetWithIcon(AppBar, Icons.filter_2), findsOneWidget); - expect(find.widgetWithIcon(AppBar, Icons.palette_outlined), findsOneWidget); + expect( + find.widgetWithIcon(AppBar, Icons.palette_outlined), + findsOneWidget, + ); // Elements on the component screen // Common buttons - expect(find.widgetWithText(ElevatedButton, 'Elevated'), findsNWidgets(2)); + expect( + find.widgetWithText(ElevatedButton, 'Elevated'), + findsNWidgets(2), + ); expect(find.widgetWithText(FilledButton, 'Filled'), findsNWidgets(2)); - expect(find.widgetWithText(FilledButton, 'Filled tonal'), findsNWidgets(2)); - expect(find.widgetWithText(OutlinedButton, 'Outlined'), findsNWidgets(2)); + expect( + find.widgetWithText(FilledButton, 'Filled tonal'), + findsNWidgets(2), + ); + expect( + find.widgetWithText(OutlinedButton, 'Outlined'), + findsNWidgets(2), + ); expect(find.widgetWithText(TextButton, 'Text'), findsNWidgets(2)); expect(find.widgetWithText(Buttons, 'Icon'), findsNWidgets(5)); @@ -36,7 +48,10 @@ void main() { find.byType(FloatingActionButton), findsNWidgets(6), ); // 2 more show up in the bottom app bar. 1 more in the navigation rail - expect(find.widgetWithText(FloatingActionButton, 'Create'), findsOneWidget); + expect( + find.widgetWithText(FloatingActionButton, 'Create'), + findsOneWidget, + ); // Icon buttons expect( @@ -52,13 +67,18 @@ void main() { expect(find.byType(Badge), findsNWidgets(4)); // Progress indicators - Finder circularProgressIndicator = find.byType(CircularProgressIndicator); + Finder circularProgressIndicator = find.byType( + CircularProgressIndicator, + ); expect(circularProgressIndicator, findsOneWidget); Finder linearProgressIndicator = find.byType(LinearProgressIndicator); expect(linearProgressIndicator, findsOneWidget); // Snackbar - expect(find.widgetWithText(TextButton, 'Show snackbar'), findsOneWidget); + expect( + find.widgetWithText(TextButton, 'Show snackbar'), + findsOneWidget, + ); // Bottom sheet expect( @@ -128,8 +148,14 @@ void main() { expect(find.byType(InputChip), findsNWidgets(2)); // Date and time pickers - expect(find.widgetWithText(DatePicker, 'Show date picker'), findsOneWidget); - expect(find.widgetWithText(TimePicker, 'Show time picker'), findsOneWidget); + expect( + find.widgetWithText(DatePicker, 'Show date picker'), + findsOneWidget, + ); + expect( + find.widgetWithText(TimePicker, 'Show time picker'), + findsOneWidget, + ); // Menus expect(find.byType(MenuAnchor), findsNWidgets(5)); @@ -152,175 +178,221 @@ void main() { expect(find.widgetWithText(TextField, 'Outlined'), findsNWidgets(2)); }); - testWidgets('NavigationRail doesn\'t show when width value is small than 1000 ' - '(in Portrait mode or narrow screen)', (tester) async { - widgetSetup(tester, 999, windowHeight: 7000); - await tester.pumpWidget(const App()); - await tester.pumpAndSettle(); - - // When screen width is less than 1000, NavigationBar will show. At the same - // time, the NavigationBar example still show up in the navigation group. - expect( - find.byType(NavigationBars), - findsNWidgets(3), - ); // The real navBar, badges example and navBar example - expect(find.widgetWithText(NavigationBar, 'Components'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Color'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Typography'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Elevation'), findsOneWidget); - - expect(find.widgetWithText(NavigationBar, 'Explore'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Pets'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Account'), findsOneWidget); - }); - - testWidgets('NavigationRail shows when width value is greater than or equal ' - 'to 1000 (in Landscape mode or wider screen)', (tester) async { - widgetSetup(tester, 1001, windowHeight: 3000); - await tester.pumpWidget(const App()); - await tester.pumpAndSettle(); - - // When screen width is greater than or equal to 1000, NavigationRail will show. - // At the same time, the NavigationBar will NOT show. - expect(find.byType(NavigationRail), findsNWidgets(2)); - expect(find.byType(Tooltip, skipOffstage: false), findsWidgets); - expect(find.widgetWithText(NavigationRail, 'Components'), findsOneWidget); - expect(find.widgetWithText(NavigationRail, 'Color'), findsOneWidget); - expect(find.widgetWithText(NavigationRail, 'Typography'), findsOneWidget); - expect(find.widgetWithText(NavigationRail, 'Elevation'), findsOneWidget); - - expect(find.widgetWithText(NavigationBar, 'Explore'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Pets'), findsOneWidget); - expect(find.widgetWithText(NavigationBar, 'Account'), findsOneWidget); - - // the Navigation bar should be out of screen. - final RenderBox box = tester.renderObject( - find.widgetWithText(NavigationBar, 'Components'), - ); - expect(box.localToGlobal(Offset.zero), const Offset(0.0, 3080.0)); - }); - - testWidgets('Material version switches between Material3 and Material2 when ' - 'the version icon is clicked', (tester) async { - widgetSetup(tester, 450, windowHeight: 7000); - await tester.pumpWidget(const App()); - BuildContext defaultElevatedButton = tester.firstElement( - find.byType(ElevatedButton), - ); - BuildContext defaultIconButton = tester.firstElement( - find.byType(IconButton), - ); - BuildContext defaultFAB = tester.firstElement( - find.byType(FloatingActionButton), - ); - BuildContext defaultCard = tester.firstElement( - find.widgetWithText(Card, 'Elevated'), - ); - BuildContext defaultChip = tester.firstElement( - find.widgetWithText(ActionChip, 'Assist'), - ); - Finder dialog = find.text('Show dialog'); - await tester.tap(dialog); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - BuildContext defaultAlertDialog = tester.element(find.byType(AlertDialog)); - expect(Theme.of(defaultAlertDialog).useMaterial3, true); - Finder dismiss = find.text('Okay'); - await tester.tap(dismiss); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - - expect(find.widgetWithIcon(AppBar, Icons.filter_2), findsOneWidget); - expect(find.widgetWithIcon(AppBar, Icons.filter_3), findsNothing); - expect(find.text('Material 3'), findsOneWidget); - expect(Theme.of(defaultElevatedButton).useMaterial3, true); - expect(Theme.of(defaultIconButton).useMaterial3, true); - expect(Theme.of(defaultFAB).useMaterial3, true); - expect(Theme.of(defaultCard).useMaterial3, true); - expect(Theme.of(defaultChip).useMaterial3, true); - - Finder appbarM3Icon = find.descendant( - of: find.byType(AppBar), - matching: find.widgetWithIcon(IconButton, Icons.filter_2), - ); - await tester.tap(appbarM3Icon); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - BuildContext updatedElevatedButton = tester.firstElement( - find.byType(ElevatedButton), - ); - BuildContext updatedIconButton = tester.firstElement( - find.byType(IconButton), - ); - BuildContext updatedFAB = tester.firstElement( - find.byType(FloatingActionButton), - ); - BuildContext updatedCard = tester.firstElement(find.byType(Card)); - BuildContext updatedChip = tester.firstElement( - find.widgetWithText(ActionChip, 'Assist'), - ); - Finder updatedDialog = find.text('Show dialog'); - await tester.tap(updatedDialog); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - BuildContext updatedAlertDialog = tester.firstElement( - find.byType(AlertDialog), - ); - expect(Theme.of(updatedAlertDialog).useMaterial3, false); - Finder updatedDismiss = find.text('Dismiss'); - await tester.tap(updatedDismiss); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - - expect(find.widgetWithIcon(AppBar, Icons.filter_3), findsOneWidget); - expect(find.widgetWithIcon(AppBar, Icons.filter_2), findsNothing); - expect(find.text('Material 2'), findsOneWidget); - expect(Theme.of(updatedElevatedButton).useMaterial3, false); - expect(Theme.of(updatedIconButton).useMaterial3, false); - expect(Theme.of(updatedFAB).useMaterial3, false); - expect(Theme.of(updatedCard).useMaterial3, false); - expect(Theme.of(updatedChip).useMaterial3, false); - }); - - testWidgets('Other screens become Material2 mode after changing mode from ' - 'main screen', (tester) async { - await tester.pumpWidget(const App()); - Finder appbarM2Icon = find.descendant( - of: find.byType(AppBar), - matching: find.widgetWithIcon(IconButton, Icons.filter_2), - ); - await tester.tap(appbarM2Icon); - Finder secondScreenIcon = find.descendant( - of: find.byType(NavigationBar), - matching: find.widgetWithIcon( - NavigationDestination, - Icons.format_paint_outlined, - ), - ); - await tester.tap(secondScreenIcon); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - BuildContext lightThemeText = tester.element( - find.text('Light ColorScheme'), - ); - expect(Theme.of(lightThemeText).useMaterial3, false); - Finder thirdScreenIcon = find.descendant( - of: find.byType(NavigationBar), - matching: find.widgetWithIcon( - NavigationDestination, - Icons.text_snippet_outlined, - ), - ); - await tester.tap(thirdScreenIcon); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - BuildContext displayLargeText = tester.element(find.text('Display Large')); - expect(Theme.of(displayLargeText).useMaterial3, false); - Finder fourthScreenIcon = find.descendant( - of: find.byType(NavigationBar), - matching: find.widgetWithIcon( - NavigationDestination, - Icons.invert_colors_on_outlined, - ), - ); - await tester.tap(fourthScreenIcon); - await tester.pumpAndSettle(const Duration(microseconds: 500)); - BuildContext material = tester.firstElement(find.byType(Material)); - expect(Theme.of(material).useMaterial3, false); - }); + testWidgets( + 'NavigationRail doesn\'t show when width value is small than 1000 ' + '(in Portrait mode or narrow screen)', + (tester) async { + widgetSetup(tester, 999, windowHeight: 7000); + await tester.pumpWidget(const App()); + await tester.pumpAndSettle(); + + // When screen width is less than 1000, NavigationBar will show. At the same + // time, the NavigationBar example still show up in the navigation group. + expect( + find.byType(NavigationBars), + findsNWidgets(3), + ); // The real navBar, badges example and navBar example + expect( + find.widgetWithText(NavigationBar, 'Components'), + findsOneWidget, + ); + expect(find.widgetWithText(NavigationBar, 'Color'), findsOneWidget); + expect( + find.widgetWithText(NavigationBar, 'Typography'), + findsOneWidget, + ); + expect( + find.widgetWithText(NavigationBar, 'Elevation'), + findsOneWidget, + ); + + expect( + find.widgetWithText(NavigationBar, 'Explore'), + findsOneWidget, + ); + expect(find.widgetWithText(NavigationBar, 'Pets'), findsOneWidget); + expect( + find.widgetWithText(NavigationBar, 'Account'), + findsOneWidget, + ); + }, + ); + + testWidgets( + 'NavigationRail shows when width value is greater than or equal ' + 'to 1000 (in Landscape mode or wider screen)', + (tester) async { + widgetSetup(tester, 1001, windowHeight: 3000); + await tester.pumpWidget(const App()); + await tester.pumpAndSettle(); + + // When screen width is greater than or equal to 1000, NavigationRail will show. + // At the same time, the NavigationBar will NOT show. + expect(find.byType(NavigationRail), findsNWidgets(2)); + expect(find.byType(Tooltip, skipOffstage: false), findsWidgets); + expect( + find.widgetWithText(NavigationRail, 'Components'), + findsOneWidget, + ); + expect(find.widgetWithText(NavigationRail, 'Color'), findsOneWidget); + expect( + find.widgetWithText(NavigationRail, 'Typography'), + findsOneWidget, + ); + expect( + find.widgetWithText(NavigationRail, 'Elevation'), + findsOneWidget, + ); + + expect( + find.widgetWithText(NavigationBar, 'Explore'), + findsOneWidget, + ); + expect(find.widgetWithText(NavigationBar, 'Pets'), findsOneWidget); + expect( + find.widgetWithText(NavigationBar, 'Account'), + findsOneWidget, + ); + + // the Navigation bar should be out of screen. + final RenderBox box = tester.renderObject( + find.widgetWithText(NavigationBar, 'Components'), + ); + expect(box.localToGlobal(Offset.zero), const Offset(0.0, 3080.0)); + }, + ); + + testWidgets( + 'Material version switches between Material3 and Material2 when ' + 'the version icon is clicked', + (tester) async { + widgetSetup(tester, 450, windowHeight: 7000); + await tester.pumpWidget(const App()); + BuildContext defaultElevatedButton = tester.firstElement( + find.byType(ElevatedButton), + ); + BuildContext defaultIconButton = tester.firstElement( + find.byType(IconButton), + ); + BuildContext defaultFAB = tester.firstElement( + find.byType(FloatingActionButton), + ); + BuildContext defaultCard = tester.firstElement( + find.widgetWithText(Card, 'Elevated'), + ); + BuildContext defaultChip = tester.firstElement( + find.widgetWithText(ActionChip, 'Assist'), + ); + Finder dialog = find.text('Show dialog'); + await tester.tap(dialog); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + BuildContext defaultAlertDialog = tester.element( + find.byType(AlertDialog), + ); + expect(Theme.of(defaultAlertDialog).useMaterial3, true); + Finder dismiss = find.text('Okay'); + await tester.tap(dismiss); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + + expect(find.widgetWithIcon(AppBar, Icons.filter_2), findsOneWidget); + expect(find.widgetWithIcon(AppBar, Icons.filter_3), findsNothing); + expect(find.text('Material 3'), findsOneWidget); + expect(Theme.of(defaultElevatedButton).useMaterial3, true); + expect(Theme.of(defaultIconButton).useMaterial3, true); + expect(Theme.of(defaultFAB).useMaterial3, true); + expect(Theme.of(defaultCard).useMaterial3, true); + expect(Theme.of(defaultChip).useMaterial3, true); + + Finder appbarM3Icon = find.descendant( + of: find.byType(AppBar), + matching: find.widgetWithIcon(IconButton, Icons.filter_2), + ); + await tester.tap(appbarM3Icon); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + BuildContext updatedElevatedButton = tester.firstElement( + find.byType(ElevatedButton), + ); + BuildContext updatedIconButton = tester.firstElement( + find.byType(IconButton), + ); + BuildContext updatedFAB = tester.firstElement( + find.byType(FloatingActionButton), + ); + BuildContext updatedCard = tester.firstElement(find.byType(Card)); + BuildContext updatedChip = tester.firstElement( + find.widgetWithText(ActionChip, 'Assist'), + ); + Finder updatedDialog = find.text('Show dialog'); + await tester.tap(updatedDialog); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + BuildContext updatedAlertDialog = tester.firstElement( + find.byType(AlertDialog), + ); + expect(Theme.of(updatedAlertDialog).useMaterial3, false); + Finder updatedDismiss = find.text('Dismiss'); + await tester.tap(updatedDismiss); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + + expect(find.widgetWithIcon(AppBar, Icons.filter_3), findsOneWidget); + expect(find.widgetWithIcon(AppBar, Icons.filter_2), findsNothing); + expect(find.text('Material 2'), findsOneWidget); + expect(Theme.of(updatedElevatedButton).useMaterial3, false); + expect(Theme.of(updatedIconButton).useMaterial3, false); + expect(Theme.of(updatedFAB).useMaterial3, false); + expect(Theme.of(updatedCard).useMaterial3, false); + expect(Theme.of(updatedChip).useMaterial3, false); + }, + ); + + testWidgets( + 'Other screens become Material2 mode after changing mode from ' + 'main screen', + (tester) async { + await tester.pumpWidget(const App()); + Finder appbarM2Icon = find.descendant( + of: find.byType(AppBar), + matching: find.widgetWithIcon(IconButton, Icons.filter_2), + ); + await tester.tap(appbarM2Icon); + Finder secondScreenIcon = find.descendant( + of: find.byType(NavigationBar), + matching: find.widgetWithIcon( + NavigationDestination, + Icons.format_paint_outlined, + ), + ); + await tester.tap(secondScreenIcon); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + BuildContext lightThemeText = tester.element( + find.text('Light ColorScheme'), + ); + expect(Theme.of(lightThemeText).useMaterial3, false); + Finder thirdScreenIcon = find.descendant( + of: find.byType(NavigationBar), + matching: find.widgetWithIcon( + NavigationDestination, + Icons.text_snippet_outlined, + ), + ); + await tester.tap(thirdScreenIcon); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + BuildContext displayLargeText = tester.element( + find.text('Display Large'), + ); + expect(Theme.of(displayLargeText).useMaterial3, false); + Finder fourthScreenIcon = find.descendant( + of: find.byType(NavigationBar), + matching: find.widgetWithIcon( + NavigationDestination, + Icons.invert_colors_on_outlined, + ), + ); + await tester.tap(fourthScreenIcon); + await tester.pumpAndSettle(const Duration(microseconds: 500)); + BuildContext material = tester.firstElement(find.byType(Material)); + expect(Theme.of(material).useMaterial3, false); + }, + ); testWidgets('Brightness mode switches between dark and light when' 'the brightness icon is clicked', (tester) async { diff --git a/material_3_demo/test/elevation_screen_test.dart b/material_3_demo/test/elevation_screen_test.dart index 24e20978502..a9f3d12b173 100644 --- a/material_3_demo/test/elevation_screen_test.dart +++ b/material_3_demo/test/elevation_screen_test.dart @@ -34,7 +34,10 @@ void main() { expect(tintIconOnBar, findsNothing); Finder selectedTintIconOnBar = find.descendant( of: find.byType(NavigationBar), - matching: find.widgetWithIcon(NavigationDestination, Icons.opacity), + matching: find.widgetWithIcon( + NavigationDestination, + Icons.opacity, + ), ); expect(selectedTintIconOnBar, findsOneWidget); expect(find.text('Surface Tint Color Only'), findsOneWidget); @@ -69,14 +72,19 @@ void main() { }, ); - testWidgets('Surface Tones screen shows correct content', (tester) async { + testWidgets('Surface Tones screen shows correct content', ( + tester, + ) async { await tester.pumpWidget( const MaterialApp( home: Scaffold(body: Row(children: [ElevationScreen()])), ), ); expect(find.text('Surface Tint Color Only'), findsOneWidget); - expect(find.text('Surface Tint Color and Shadow Color'), findsOneWidget); + expect( + find.text('Surface Tint Color and Shadow Color'), + findsOneWidget, + ); expect(find.text('Shadow Color Only'), findsOneWidget); expect(find.byType(ElevationGrid), findsNWidgets(3)); expect(find.byType(ElevationCard), findsNWidgets(18)); diff --git a/navigation_and_routing/lib/main.dart b/navigation_and_routing/lib/main.dart index 19469b4836f..19993439fd8 100644 --- a/navigation_and_routing/lib/main.dart +++ b/navigation_and_routing/lib/main.dart @@ -19,7 +19,8 @@ const double windowWidth = 480; const double windowHeight = 854; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Navigation and routing'); setWindowMinSize(const Size(windowWidth, windowHeight)); diff --git a/navigation_and_routing/lib/src/app.dart b/navigation_and_routing/lib/src/app.dart index 7ccdbb9629c..562ef89d20a 100644 --- a/navigation_and_routing/lib/src/app.dart +++ b/navigation_and_routing/lib/src/app.dart @@ -17,8 +17,12 @@ import 'screens/sign_in.dart'; import 'widgets/book_list.dart'; import 'widgets/fade_transition_page.dart'; -final appShellNavigatorKey = GlobalKey(debugLabel: 'app shell'); -final booksNavigatorKey = GlobalKey(debugLabel: 'books shell'); +final appShellNavigatorKey = GlobalKey( + debugLabel: 'app shell', +); +final booksNavigatorKey = GlobalKey( + debugLabel: 'books shell', +); class Bookstore extends StatefulWidget { const Bookstore({super.key}); diff --git a/navigation_and_routing/lib/src/auth.dart b/navigation_and_routing/lib/src/auth.dart index 4abe973f1be..9804207f48e 100644 --- a/navigation_and_routing/lib/src/auth.dart +++ b/navigation_and_routing/lib/src/auth.dart @@ -33,10 +33,9 @@ class BookstoreAuth extends ChangeNotifier { @override int get hashCode => _signedIn.hashCode; - static BookstoreAuth of(BuildContext context) => - context - .dependOnInheritedWidgetOfExactType()! - .notifier!; + static BookstoreAuth of(BuildContext context) => context + .dependOnInheritedWidgetOfExactType()! + .notifier!; } class BookstoreAuthScope extends InheritedNotifier { diff --git a/navigation_and_routing/lib/src/data/library.dart b/navigation_and_routing/lib/src/data/library.dart index 8daf24dc391..0afdb59f1bb 100644 --- a/navigation_and_routing/lib/src/data/library.dart +++ b/navigation_and_routing/lib/src/data/library.dart @@ -5,32 +5,31 @@ import 'author.dart'; import 'book.dart'; -final libraryInstance = - Library() - ..addBook( - title: 'Left Hand of Darkness', - authorName: 'Ursula K. Le Guin', - isPopular: true, - isNew: true, - ) - ..addBook( - title: 'Too Like the Lightning', - authorName: 'Ada Palmer', - isPopular: false, - isNew: true, - ) - ..addBook( - title: 'Kindred', - authorName: 'Octavia E. Butler', - isPopular: true, - isNew: false, - ) - ..addBook( - title: 'The Lathe of Heaven', - authorName: 'Ursula K. Le Guin', - isPopular: false, - isNew: false, - ); +final libraryInstance = Library() + ..addBook( + title: 'Left Hand of Darkness', + authorName: 'Ursula K. Le Guin', + isPopular: true, + isNew: true, + ) + ..addBook( + title: 'Too Like the Lightning', + authorName: 'Ada Palmer', + isPopular: false, + isNew: true, + ) + ..addBook( + title: 'Kindred', + authorName: 'Octavia E. Butler', + isPopular: true, + isNew: false, + ) + ..addBook( + title: 'The Lathe of Heaven', + authorName: 'Ursula K. Le Guin', + isPopular: false, + isNew: false, + ); class Library { final List allBooks = []; @@ -60,7 +59,9 @@ class Library { return allBooks[int.parse(id)]; } - List get popularBooks => [...allBooks.where((book) => book.isPopular)]; + List get popularBooks => [ + ...allBooks.where((book) => book.isPopular), + ]; List get newBooks => [...allBooks.where((book) => book.isNew)]; } diff --git a/navigation_and_routing/lib/src/screens/authors.dart b/navigation_and_routing/lib/src/screens/authors.dart index 7c1408f8bb7..3aeb4b5a182 100644 --- a/navigation_and_routing/lib/src/screens/authors.dart +++ b/navigation_and_routing/lib/src/screens/authors.dart @@ -12,7 +12,11 @@ class AuthorsScreen extends StatelessWidget { final String title; final ValueChanged onTap; - const AuthorsScreen({required this.onTap, this.title = 'Authors', super.key}); + const AuthorsScreen({ + required this.onTap, + this.title = 'Authors', + super.key, + }); @override Widget build(BuildContext context) => Scaffold( diff --git a/navigation_and_routing/lib/src/screens/book_details.dart b/navigation_and_routing/lib/src/screens/book_details.dart index 481e4826db6..4de20179468 100644 --- a/navigation_and_routing/lib/src/screens/book_details.dart +++ b/navigation_and_routing/lib/src/screens/book_details.dart @@ -37,26 +37,24 @@ class BookDetailsScreen extends StatelessWidget { onPressed: () { Navigator.of(context).push( MaterialPageRoute( - builder: - (context) => AuthorDetailsScreen( - author: book!.author, - onBookTapped: (book) { - GoRouter.of( - context, - ).go('/books/all/book/${book.id}'); - }, - ), + builder: (context) => AuthorDetailsScreen( + author: book!.author, + onBookTapped: (book) { + GoRouter.of( + context, + ).go('/books/all/book/${book.id}'); + }, + ), ), ); }, ), Link( uri: Uri.parse('/authors/author/${book!.author.id}'), - builder: - (context, followLink) => TextButton( - onPressed: followLink, - child: const Text('View author (Link)'), - ), + builder: (context, followLink) => TextButton( + onPressed: followLink, + child: const Text('View author (Link)'), + ), ), ], ), diff --git a/navigation_and_routing/lib/src/screens/scaffold.dart b/navigation_and_routing/lib/src/screens/scaffold.dart index 0ac9e1490b1..2d729736085 100644 --- a/navigation_and_routing/lib/src/screens/scaffold.dart +++ b/navigation_and_routing/lib/src/screens/scaffold.dart @@ -31,8 +31,14 @@ class BookstoreScaffold extends StatelessWidget { }, destinations: const [ AdaptiveScaffoldDestination(title: 'Books', icon: Icons.book), - AdaptiveScaffoldDestination(title: 'Authors', icon: Icons.person), - AdaptiveScaffoldDestination(title: 'Settings', icon: Icons.settings), + AdaptiveScaffoldDestination( + title: 'Authors', + icon: Icons.person, + ), + AdaptiveScaffoldDestination( + title: 'Settings', + icon: Icons.settings, + ), ], ), ); diff --git a/navigation_and_routing/lib/src/screens/settings.dart b/navigation_and_routing/lib/src/screens/settings.dart index 54015b7a303..b915e6aefa0 100644 --- a/navigation_and_routing/lib/src/screens/settings.dart +++ b/navigation_and_routing/lib/src/screens/settings.dart @@ -26,7 +26,10 @@ class _SettingsScreenState extends State { constraints: const BoxConstraints(maxWidth: 400), child: const Card( child: Padding( - padding: EdgeInsets.symmetric(vertical: 18, horizontal: 12), + padding: EdgeInsets.symmetric( + vertical: 18, + horizontal: 12, + ), child: SettingsContent(), ), ), @@ -44,7 +47,10 @@ class SettingsContent extends StatelessWidget { Widget build(BuildContext context) => Column( children: [ ...[ - Text('Settings', style: Theme.of(context).textTheme.headlineMedium), + Text( + 'Settings', + style: Theme.of(context).textTheme.headlineMedium, + ), FilledButton( onPressed: () { BookstoreAuth.of(context).signOut(); @@ -54,11 +60,10 @@ class SettingsContent extends StatelessWidget { const Text('Example using the Link widget:'), Link( uri: Uri.parse('/books/all/book/0'), - builder: - (context, followLink) => TextButton( - onPressed: followLink, - child: const Text('/books/all/book/0'), - ), + builder: (context, followLink) => TextButton( + onPressed: followLink, + child: const Text('/books/all/book/0'), + ), ), const Text('Example using GoRouter.of(context).go():'), TextButton( @@ -70,25 +75,23 @@ class SettingsContent extends StatelessWidget { ].map((w) => Padding(padding: const EdgeInsets.all(8), child: w)), const Text('Displays a dialog on the root Navigator:'), TextButton( - onPressed: - () => showDialog( - context: context, - builder: - (context) => AlertDialog( - title: const Text('Alert!'), - content: const Text('The alert description goes here.'), - actions: [ - TextButton( - onPressed: () => Navigator.pop(context, 'Cancel'), - child: const Text('Cancel'), - ), - TextButton( - onPressed: () => Navigator.pop(context, 'OK'), - child: const Text('OK'), - ), - ], - ), - ), + onPressed: () => showDialog( + context: context, + builder: (context) => AlertDialog( + title: const Text('Alert!'), + content: const Text('The alert description goes here.'), + actions: [ + TextButton( + onPressed: () => Navigator.pop(context, 'Cancel'), + child: const Text('Cancel'), + ), + TextButton( + onPressed: () => Navigator.pop(context, 'OK'), + child: const Text('OK'), + ), + ], + ), + ), child: const Text('Show Dialog'), ), ], diff --git a/navigation_and_routing/lib/src/widgets/author_list.dart b/navigation_and_routing/lib/src/widgets/author_list.dart index 4453509268c..e9c3a99a1c7 100644 --- a/navigation_and_routing/lib/src/widgets/author_list.dart +++ b/navigation_and_routing/lib/src/widgets/author_list.dart @@ -15,11 +15,10 @@ class AuthorList extends StatelessWidget { @override Widget build(BuildContext context) => ListView.builder( itemCount: authors.length, - itemBuilder: - (context, index) => ListTile( - title: Text(authors[index].name), - subtitle: Text('${authors[index].books.length} books'), - onTap: onTap != null ? () => onTap!(authors[index]) : null, - ), + itemBuilder: (context, index) => ListTile( + title: Text(authors[index].name), + subtitle: Text('${authors[index].books.length} books'), + onTap: onTap != null ? () => onTap!(authors[index]) : null, + ), ); } diff --git a/navigation_and_routing/lib/src/widgets/book_list.dart b/navigation_and_routing/lib/src/widgets/book_list.dart index 630f1e43b5d..9c5da89e7ac 100644 --- a/navigation_and_routing/lib/src/widgets/book_list.dart +++ b/navigation_and_routing/lib/src/widgets/book_list.dart @@ -15,11 +15,10 @@ class BookList extends StatelessWidget { @override Widget build(BuildContext context) => ListView.builder( itemCount: books.length, - itemBuilder: - (context, index) => ListTile( - title: Text(books[index].title), - subtitle: Text(books[index].author.name), - onTap: onTap != null ? () => onTap!(books[index]) : null, - ), + itemBuilder: (context, index) => ListTile( + title: Text(books[index].title), + subtitle: Text(books[index].author.name), + onTap: onTap != null ? () => onTap!(books[index]) : null, + ), ); } diff --git a/navigation_and_routing/pubspec.yaml b/navigation_and_routing/pubspec.yaml index 55bef920d14..19617657d31 100644 --- a/navigation_and_routing/pubspec.yaml +++ b/navigation_and_routing/pubspec.yaml @@ -2,16 +2,17 @@ name: bookstore description: Navigation and routing sample app publish_to: "none" # Remove this line if you wish to publish to pub.dev version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: adaptive_navigation: ^0.0.3 cupertino_icons: ^1.0.2 flutter: sdk: flutter - go_router: ^16.1.0 + go_router: ^16.0.0 url_launcher: ^6.1.1 window_size: git: diff --git a/pedometer/example/lib/main.dart b/pedometer/example/lib/main.dart index ac402fc2737..00ea267eee8 100644 --- a/pedometer/example/lib/main.dart +++ b/pedometer/example/lib/main.dart @@ -65,20 +65,19 @@ class _HomeState extends State { Widget build(BuildContext context) { final textTheme = Theme.of(context).textTheme; - final barGroups = - hourlySteps - .map( - (e) => BarChartGroupData( - x: int.parse(e.startHour), - barRods: [ - BarChartRodData( - color: Colors.blue[900], - toY: e.steps.toDouble() / 100, - ), - ], + final barGroups = hourlySteps + .map( + (e) => BarChartGroupData( + x: int.parse(e.startHour), + barRods: [ + BarChartRodData( + color: Colors.blue[900], + toY: e.steps.toDouble() / 100, ), - ) - .toList(); + ], + ), + ) + .toList(); return Scaffold( body: Stack( @@ -99,14 +98,14 @@ class _HomeState extends State { children: [ lastUpdated != null ? Padding( - padding: const EdgeInsets.symmetric(vertical: 50.0), - child: Text( - DateFormat.yMMMMd('en_US').format(lastUpdated!), - style: textTheme.titleLarge!.copyWith( - color: Colors.blue[900], + padding: const EdgeInsets.symmetric(vertical: 50.0), + child: Text( + DateFormat.yMMMMd('en_US').format(lastUpdated!), + style: textTheme.titleLarge!.copyWith( + color: Colors.blue[900], + ), ), - ), - ) + ) : const SizedBox(height: 0), Text( hourlySteps.fold(0, (t, e) => t + e.steps).toString(), diff --git a/pedometer/example/lib/steps_repo.dart b/pedometer/example/lib/steps_repo.dart index d44e5f1ae75..bd8db966a36 100644 --- a/pedometer/example/lib/steps_repo.dart +++ b/pedometer/example/lib/steps_repo.dart @@ -45,10 +45,11 @@ class _IOSStepsRepo implements StepsRepo { final dylib = ffi.DynamicLibrary.open("pedometer.framework/pedometer"); // Initialize the Dart API - final initializeApi = dylib.lookupFunction< - ffi.IntPtr Function(ffi.Pointer), - int Function(ffi.Pointer) - >('Dart_InitializeApiDL'); + final initializeApi = dylib + .lookupFunction< + ffi.IntPtr Function(ffi.Pointer), + int Function(ffi.Pointer) + >('Dart_InitializeApiDL'); final initializeResult = initializeApi(ffi.NativeApi.initializeApiDLData); if (initializeResult != 0) { @@ -106,8 +107,9 @@ class _IOSStepsRepo implements StepsRepo { ) { if (result != null) { final stepCount = result.numberOfSteps.intValue; - final startHour = - hourFormatter.stringFromDate_(result.startDate).toString(); + final startHour = hourFormatter + .stringFromDate_(result.startDate) + .toString(); completer.complete(Steps(startHour, stepCount)); } else { debugPrint("Query error: ${error?.localizedDescription}"); @@ -136,8 +138,8 @@ class _AndroidStepsRepo implements StepsRepo { // ignore: invalid_use_of_internal_member activity = hc.Activity.fromReference(jni.Jni.getCurrentActivity()); applicationContext = - // ignore: invalid_use_of_internal_member - hc.Context.fromReference(jni.Jni.getCachedApplicationContext()); + // ignore: invalid_use_of_internal_member + hc.Context.fromReference(jni.Jni.getCachedApplicationContext()); client = hc.HealthConnectClient.getOrCreate$1(applicationContext); } @@ -147,10 +149,18 @@ class _AndroidStepsRepo implements StepsRepo { final now = DateTime.now(); for (var h = 0; h <= now.hour; h++) { - final start = - DateTime(now.year, now.month, now.day, h).millisecondsSinceEpoch; - final end = - DateTime(now.year, now.month, now.day, h + 1).millisecondsSinceEpoch; + final start = DateTime( + now.year, + now.month, + now.day, + h, + ).millisecondsSinceEpoch; + final end = DateTime( + now.year, + now.month, + now.day, + h + 1, + ).millisecondsSinceEpoch; final request = hc.AggregateRequest( { hc.StepsRecord.COUNT_TOTAL, diff --git a/pedometer/example/pubspec.yaml b/pedometer/example/pubspec.yaml index e454e4275a2..b9157f05fae 100644 --- a/pedometer/example/pubspec.yaml +++ b/pedometer/example/pubspec.yaml @@ -1,5 +1,8 @@ name: pedometer_example description: Demonstrates how to use the pedometer plugin. +version: 1.0.0+1 +resolution: workspace + # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. publish_to: 'none' # Remove this line if you wish to publish to pub.dev @@ -16,10 +19,10 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.0.0+1 + environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -41,10 +44,12 @@ dependencies: ffi: ^2.1.2 intl: ^0.20.0 - jni: ^0.13.0 - fl_chart: ^0.70.0 + jni: ^0.14.2 + fl_chart: ^1.0.0 dev_dependencies: + analysis_defaults: + path: ../../analysis_defaults flutter_test: sdk: flutter @@ -53,7 +58,7 @@ dev_dependencies: # activated in the `analysis_options.yaml` file located at the root of your # package. See that file for information about deactivating specific lint # rules and activating additional ones. - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/pedometer/lib/health_connect.dart b/pedometer/lib/health_connect.dart index 7272f150687..653e0d0b5da 100644 --- a/pedometer/lib/health_connect.dart +++ b/pedometer/lib/health_connect.dart @@ -235,8 +235,8 @@ final class $HealthConnectClient$Companion$NullableType @core$_.override HealthConnectClient$Companion? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : HealthConnectClient$Companion.fromReference(reference); + ? null + : HealthConnectClient$Companion.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -828,10 +828,9 @@ class HealthConnectClient extends jni$_.JObject { final $o = jni$_.JGlobalReference( jni$_.JObjectPtr.fromAddress(await $p.first), ); - final $k = - const jni$_.JListType( - jni$_.JObjectType(), - ).jClass.reference; + final $k = const jni$_.JListType( + jni$_.JObjectType(), + ).jClass.reference; if (!jni$_.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { $k.release(); throw 'Failed'; @@ -887,10 +886,9 @@ class HealthConnectClient extends jni$_.JObject { final $o = jni$_.JGlobalReference( jni$_.JObjectPtr.fromAddress(await $p.first), ); - final $k = - const jni$_.JListType( - jni$_.JObjectType(), - ).jClass.reference; + final $k = const jni$_.JListType( + jni$_.JObjectType(), + ).jClass.reference; if (!jni$_.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { $k.release(); throw 'Failed'; @@ -2179,8 +2177,8 @@ final class $PermissionController$Companion$NullableType @core$_.override PermissionController$Companion? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : PermissionController$Companion.fromReference(reference); + ? null + : PermissionController$Companion.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -2313,10 +2311,9 @@ class PermissionController extends jni$_.JObject { final $o = jni$_.JGlobalReference( jni$_.JObjectPtr.fromAddress(await $p.first), ); - final $k = - const jni$_.JSetType( - jni$_.JObjectType(), - ).jClass.reference; + final $k = const jni$_.JSetType( + jni$_.JObjectType(), + ).jClass.reference; if (!jni$_.Jni.env.IsInstanceOf($o.pointer, $k.pointer)) { $k.release(); throw 'Failed'; @@ -3599,8 +3596,8 @@ final class $TimeRangeFilter$Companion$NullableType @core$_.override TimeRangeFilter$Companion? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : TimeRangeFilter$Companion.fromReference(reference); + ? null + : TimeRangeFilter$Companion.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -10754,8 +10751,8 @@ final class $Intent$FilterComparison$NullableType @core$_.override Intent$FilterComparison? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : Intent$FilterComparison.fromReference(reference); + ? null + : Intent$FilterComparison.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectNullableType(); @@ -11044,8 +11041,8 @@ final class $Intent$ShortcutIconResource$NullableType @core$_.override Intent$ShortcutIconResource? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : Intent$ShortcutIconResource.fromReference(reference); + ? null + : Intent$ShortcutIconResource.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectNullableType(); @@ -29213,8 +29210,8 @@ final class $AggregateGroupByDurationRequest$NullableType @core$_.override AggregateGroupByDurationRequest? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : AggregateGroupByDurationRequest.fromReference(reference); + ? null + : AggregateGroupByDurationRequest.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -29431,8 +29428,8 @@ final class $AggregateGroupByPeriodRequest$NullableType @core$_.override AggregateGroupByPeriodRequest? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : AggregateGroupByPeriodRequest.fromReference(reference); + ? null + : AggregateGroupByPeriodRequest.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -30137,8 +30134,8 @@ final class $ReadRecordsRequest$NullableType<$T extends jni$_.JObject> @core$_.override ReadRecordsRequest<$T>? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : ReadRecordsRequest<$T>.fromReference(T, reference); + ? null + : ReadRecordsRequest<$T>.fromReference(T, reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -30722,8 +30719,8 @@ final class $AggregateMetric$AggregationType$NullableType @core$_.override AggregateMetric$AggregationType? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : AggregateMetric$AggregationType.fromReference(reference); + ? null + : AggregateMetric$AggregationType.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -30853,8 +30850,8 @@ final class $AggregateMetric$Companion$NullableType @core$_.override AggregateMetric$Companion? fromReference(jni$_.JReference reference) => reference.isNull - ? null - : AggregateMetric$Companion.fromReference(reference); + ? null + : AggregateMetric$Companion.fromReference(reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectType(); @@ -31054,13 +31051,9 @@ final class $AggregateMetric$Converter$FromDouble$NullableType< @core$_.override AggregateMetric$Converter$FromDouble<$R>? fromReference( jni$_.JReference reference, - ) => - reference.isNull - ? null - : AggregateMetric$Converter$FromDouble<$R>.fromReference( - R, - reference, - ); + ) => reference.isNull + ? null + : AggregateMetric$Converter$FromDouble<$R>.fromReference(R, reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectNullableType(); @@ -31270,10 +31263,9 @@ final class $AggregateMetric$Converter$FromLong$NullableType< @core$_.override AggregateMetric$Converter$FromLong<$R>? fromReference( jni$_.JReference reference, - ) => - reference.isNull - ? null - : AggregateMetric$Converter$FromLong<$R>.fromReference(R, reference); + ) => reference.isNull + ? null + : AggregateMetric$Converter$FromLong<$R>.fromReference(R, reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectNullableType(); @@ -31507,10 +31499,9 @@ final class $AggregateMetric$Converter$NullableType< @core$_.override AggregateMetric$Converter<$T, $R>? fromReference( jni$_.JReference reference, - ) => - reference.isNull - ? null - : AggregateMetric$Converter<$T, $R>.fromReference(T, R, reference); + ) => reference.isNull + ? null + : AggregateMetric$Converter<$T, $R>.fromReference(T, R, reference); @jni$_.internal @core$_.override jni$_.JObjType get superType => const jni$_.JObjectNullableType(); diff --git a/pedometer/lib/pedometer_bindings_generated.dart b/pedometer/lib/pedometer_bindings_generated.dart index c93f0b23b70..eb567657bcc 100644 --- a/pedometer/lib/pedometer_bindings_generated.dart +++ b/pedometer/lib/pedometer_bindings_generated.dart @@ -31,12 +31,12 @@ class PedometerBindings { return __sel_registerName(str); } - late final __sel_registerNamePtr = _lookup< - ffi.NativeFunction Function(ffi.Pointer)> - >('sel_registerName'); - late final __sel_registerName = - __sel_registerNamePtr - .asFunction Function(ffi.Pointer)>(); + late final __sel_registerNamePtr = + _lookup< + ffi.NativeFunction Function(ffi.Pointer)> + >('sel_registerName'); + late final __sel_registerName = __sel_registerNamePtr + .asFunction Function(ffi.Pointer)>(); ffi.Pointer _getClass1(String name) { final cstr = name.toNativeUtf8(); @@ -52,29 +52,27 @@ class PedometerBindings { return __objc_getClass(str); } - late final __objc_getClassPtr = _lookup< - ffi.NativeFunction Function(ffi.Pointer)> - >('objc_getClass'); - late final __objc_getClass = - __objc_getClassPtr - .asFunction< - ffi.Pointer Function(ffi.Pointer) - >(); + late final __objc_getClassPtr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) + > + >('objc_getClass'); + late final __objc_getClass = __objc_getClassPtr + .asFunction Function(ffi.Pointer)>(); ffi.Pointer _objc_retain(ffi.Pointer value) { return __objc_retain(value); } - late final __objc_retainPtr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function(ffi.Pointer) - > - >('objc_retain'); - late final __objc_retain = - __objc_retainPtr - .asFunction< - ffi.Pointer Function(ffi.Pointer) - >(); + late final __objc_retainPtr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) + > + >('objc_retain'); + late final __objc_retain = __objc_retainPtr + .asFunction Function(ffi.Pointer)>(); void _objc_release(ffi.Pointer value) { return __objc_release(value); @@ -84,8 +82,8 @@ class PedometerBindings { _lookup)>>( 'objc_release', ); - late final __objc_release = - __objc_releasePtr.asFunction)>(); + late final __objc_release = __objc_releasePtr + .asFunction)>(); late final _objc_releaseFinalizer2 = ffi.NativeFinalizer( __objc_releasePtr.cast(), @@ -96,16 +94,16 @@ class PedometerBindings { return __objc_msgSend_1(obj, sel); } - late final __objc_msgSend_1Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_1 = - __objc_msgSend_1Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_1Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_1 = __objc_msgSend_1Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_initialize1 = _registerName1("initialize"); late final _sel_init1 = _registerName1("init"); @@ -116,16 +114,16 @@ class PedometerBindings { return __objc_msgSend_2(obj, sel); } - late final __objc_msgSend_2Ptr = _lookup< - ffi.NativeFunction< - instancetype Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_2 = - __objc_msgSend_2Ptr - .asFunction< - instancetype Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_2Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_2 = __objc_msgSend_2Ptr + .asFunction< + instancetype Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_new1 = _registerName1("new"); late final _sel_allocWithZone_1 = _registerName1("allocWithZone:"); @@ -137,24 +135,24 @@ class PedometerBindings { return __objc_msgSend_3(obj, sel, zone); } - late final __objc_msgSend_3Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_NSZone>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_3 = - __objc_msgSend_3Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_NSZone>, - ) - >(); + late final __objc_msgSend_3Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_NSZone>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_3 = __objc_msgSend_3Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_NSZone>, + ) + >(); late final _sel_alloc1 = _registerName1("alloc"); late final _sel_dealloc1 = _registerName1("dealloc"); @@ -176,24 +174,24 @@ class PedometerBindings { return __objc_msgSend_4(obj, sel, aSelector); } - late final __objc_msgSend_4Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_4 = - __objc_msgSend_4Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_4Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_4 = __objc_msgSend_4Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); bool _objc_msgSend_0( ffi.Pointer obj, @@ -203,24 +201,24 @@ class PedometerBindings { return __objc_msgSend_0(obj, sel, clazz); } - late final __objc_msgSend_0Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_0 = - __objc_msgSend_0Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_0Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_0 = __objc_msgSend_0Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isKindOfClass_1 = _registerName1("isKindOfClass:"); late final _class_Protocol1 = _getClass1("Protocol"); @@ -233,24 +231,24 @@ class PedometerBindings { return __objc_msgSend_5(obj, sel, protocol); } - late final __objc_msgSend_5Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_5 = - __objc_msgSend_5Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_5Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_5 = __objc_msgSend_5Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_methodForSelector_1 = _registerName1("methodForSelector:"); ffi.Pointer> _objc_msgSend_6( @@ -261,24 +259,24 @@ class PedometerBindings { return __objc_msgSend_6(obj, sel, aSelector); } - late final __objc_msgSend_6Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer> Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_6 = - __objc_msgSend_6Ptr - .asFunction< - ffi.Pointer> Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_6Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer> Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_6 = __objc_msgSend_6Ptr + .asFunction< + ffi.Pointer> Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_instanceMethodForSelector_1 = _registerName1( "instanceMethodForSelector:", @@ -294,24 +292,24 @@ class PedometerBindings { return __objc_msgSend_7(obj, sel, aSelector); } - late final __objc_msgSend_7Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_7 = - __objc_msgSend_7Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_7Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_7 = __objc_msgSend_7Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_forwardingTargetForSelector_1 = _registerName1( "forwardingTargetForSelector:", @@ -324,24 +322,24 @@ class PedometerBindings { return __objc_msgSend_8(obj, sel, aSelector); } - late final __objc_msgSend_8Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_8 = - __objc_msgSend_8Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_8Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_8 = __objc_msgSend_8Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSInvocation1 = _getClass1("NSInvocation"); late final _class_NSMethodSignature1 = _getClass1("NSMethodSignature"); @@ -356,40 +354,43 @@ class PedometerBindings { return __objc_msgSend_9(obj, sel, types); } - late final __objc_msgSend_9Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_9 = - __objc_msgSend_9Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_9Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_9 = __objc_msgSend_9Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_numberOfArguments1 = _registerName1("numberOfArguments"); int _objc_msgSend_10(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_10(obj, sel); } - late final __objc_msgSend_10Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_10 = - __objc_msgSend_10Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_10Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_10 = __objc_msgSend_10Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_getArgumentTypeAtIndex_1 = _registerName1( "getArgumentTypeAtIndex:", @@ -402,24 +403,24 @@ class PedometerBindings { return __objc_msgSend_11(obj, sel, idx); } - late final __objc_msgSend_11Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_11 = - __objc_msgSend_11Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_11Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_11 = __objc_msgSend_11Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_frameLength1 = _registerName1("frameLength"); late final _sel_isOneway1 = _registerName1("isOneway"); @@ -427,16 +428,16 @@ class PedometerBindings { return __objc_msgSend_12(obj, sel); } - late final __objc_msgSend_12Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_12 = - __objc_msgSend_12Ptr - .asFunction< - bool Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_12Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_12 = __objc_msgSend_12Ptr + .asFunction< + bool Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_methodReturnType1 = _registerName1("methodReturnType"); ffi.Pointer _objc_msgSend_13( @@ -446,22 +447,22 @@ class PedometerBindings { return __objc_msgSend_13(obj, sel); } - late final __objc_msgSend_13Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_13 = - __objc_msgSend_13Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_13Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_13 = __objc_msgSend_13Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_methodReturnLength1 = _registerName1("methodReturnLength"); late final _sel_cancelPreviousPerformRequestsWithTarget_selector_object_1 = @@ -478,28 +479,28 @@ class PedometerBindings { return __objc_msgSend_14(obj, sel, aTarget, aSelector, anArgument); } - late final __objc_msgSend_14Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_14 = - __objc_msgSend_14Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_14Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_14 = __objc_msgSend_14Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_cancelPreviousPerformRequestsWithTarget_1 = _registerName1( "cancelPreviousPerformRequestsWithTarget:", @@ -512,24 +513,24 @@ class PedometerBindings { return __objc_msgSend_15(obj, sel, aTarget); } - late final __objc_msgSend_15Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_15 = - __objc_msgSend_15Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_15Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_15 = __objc_msgSend_15Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_accessInstanceVariablesDirectly1 = _registerName1( "accessInstanceVariablesDirectly", @@ -546,24 +547,24 @@ class PedometerBindings { return __objc_msgSend_16(obj, sel, object); } - late final __objc_msgSend_16Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_16 = - __objc_msgSend_16Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_16Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_16 = __objc_msgSend_16Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSEnumerator1 = _getClass1("NSEnumerator"); late final _sel_nextObject1 = _registerName1("nextObject"); @@ -574,22 +575,22 @@ class PedometerBindings { return __objc_msgSend_17(obj, sel); } - late final __objc_msgSend_17Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_17 = - __objc_msgSend_17Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_17Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_17 = __objc_msgSend_17Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_allObjects1 = _registerName1("allObjects"); late final _class_NSString1 = _getClass1("NSString"); @@ -603,20 +604,20 @@ class PedometerBindings { return __objc_msgSend_18(obj, sel, index); } - late final __objc_msgSend_18Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedShort Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_18 = - __objc_msgSend_18Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_18Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedShort Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_18 = __objc_msgSend_18Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _class_NSCoder1 = _getClass1("NSCoder"); late final _sel_encodeValueOfObjCType_at_1 = _registerName1( @@ -631,26 +632,26 @@ class PedometerBindings { return __objc_msgSend_19(obj, sel, type, addr); } - late final __objc_msgSend_19Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_19 = - __objc_msgSend_19Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_19Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_19 = __objc_msgSend_19Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSData1 = _getClass1("NSData"); late final _sel_bytes1 = _registerName1("bytes"); @@ -661,22 +662,22 @@ class PedometerBindings { return __objc_msgSend_20(obj, sel); } - late final __objc_msgSend_20Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_20 = - __objc_msgSend_20Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_20Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_20 = __objc_msgSend_20Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_description1 = _registerName1("description"); ffi.Pointer _objc_msgSend_21( @@ -686,22 +687,22 @@ class PedometerBindings { return __objc_msgSend_21(obj, sel); } - late final __objc_msgSend_21Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_21 = - __objc_msgSend_21Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_21Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_21 = __objc_msgSend_21Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getBytes_length_1 = _registerName1("getBytes:length:"); void _objc_msgSend_22( @@ -713,26 +714,26 @@ class PedometerBindings { return __objc_msgSend_22(obj, sel, buffer, length); } - late final __objc_msgSend_22Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_22 = - __objc_msgSend_22Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_22Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_22 = __objc_msgSend_22Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_getBytes_range_1 = _registerName1("getBytes:range:"); void _objc_msgSend_23( @@ -744,26 +745,26 @@ class PedometerBindings { return __objc_msgSend_23(obj, sel, buffer, range); } - late final __objc_msgSend_23Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_23 = - __objc_msgSend_23Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_23Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_23 = __objc_msgSend_23Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_isEqualToData_1 = _registerName1("isEqualToData:"); bool _objc_msgSend_24( @@ -774,24 +775,24 @@ class PedometerBindings { return __objc_msgSend_24(obj, sel, other); } - late final __objc_msgSend_24Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_24 = - __objc_msgSend_24Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_24Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_24 = __objc_msgSend_24Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_subdataWithRange_1 = _registerName1("subdataWithRange:"); ffi.Pointer _objc_msgSend_25( @@ -802,24 +803,24 @@ class PedometerBindings { return __objc_msgSend_25(obj, sel, range); } - late final __objc_msgSend_25Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_25 = - __objc_msgSend_25Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_25Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_25 = __objc_msgSend_25Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_writeToFile_atomically_1 = _registerName1( "writeToFile:atomically:", @@ -833,26 +834,26 @@ class PedometerBindings { return __objc_msgSend_26(obj, sel, path, useAuxiliaryFile); } - late final __objc_msgSend_26Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_26 = - __objc_msgSend_26Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_26Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_26 = __objc_msgSend_26Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _class_NSURL1 = _getClass1("NSURL"); late final _sel_initWithScheme_host_path_1 = _registerName1( @@ -868,28 +869,28 @@ class PedometerBindings { return __objc_msgSend_27(obj, sel, scheme, host, path); } - late final __objc_msgSend_27Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_27 = - __objc_msgSend_27Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_27Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_27 = __objc_msgSend_27Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initFileURLWithPath_isDirectory_relativeToURL_1 = _registerName1("initFileURLWithPath:isDirectory:relativeToURL:"); @@ -903,28 +904,28 @@ class PedometerBindings { return __objc_msgSend_28(obj, sel, path, isDir, baseURL); } - late final __objc_msgSend_28Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_28 = - __objc_msgSend_28Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_28Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_28 = __objc_msgSend_28Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_initFileURLWithPath_relativeToURL_1 = _registerName1( "initFileURLWithPath:relativeToURL:", @@ -938,26 +939,26 @@ class PedometerBindings { return __objc_msgSend_29(obj, sel, path, baseURL); } - late final __objc_msgSend_29Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_29 = - __objc_msgSend_29Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_29Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_29 = __objc_msgSend_29Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initFileURLWithPath_isDirectory_1 = _registerName1( "initFileURLWithPath:isDirectory:", @@ -971,56 +972,56 @@ class PedometerBindings { return __objc_msgSend_30(obj, sel, path, isDir); } - late final __objc_msgSend_30Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_30 = - __objc_msgSend_30Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); - - late final _sel_initFileURLWithPath_1 = _registerName1( - "initFileURLWithPath:", - ); - instancetype _objc_msgSend_31( - ffi.Pointer obj, - ffi.Pointer sel, - ffi.Pointer path, + late final __objc_msgSend_30Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_30 = __objc_msgSend_30Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); + + late final _sel_initFileURLWithPath_1 = _registerName1( + "initFileURLWithPath:", + ); + instancetype _objc_msgSend_31( + ffi.Pointer obj, + ffi.Pointer sel, + ffi.Pointer path, ) { return __objc_msgSend_31(obj, sel, path); } - late final __objc_msgSend_31Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_31 = - __objc_msgSend_31Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_31Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_31 = __objc_msgSend_31Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileURLWithPath_isDirectory_relativeToURL_1 = _registerName1( "fileURLWithPath:isDirectory:relativeToURL:", @@ -1035,28 +1036,28 @@ class PedometerBindings { return __objc_msgSend_32(obj, sel, path, isDir, baseURL); } - late final __objc_msgSend_32Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_32 = - __objc_msgSend_32Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_32Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_32 = __objc_msgSend_32Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_fileURLWithPath_relativeToURL_1 = _registerName1( "fileURLWithPath:relativeToURL:", @@ -1070,26 +1071,26 @@ class PedometerBindings { return __objc_msgSend_33(obj, sel, path, baseURL); } - late final __objc_msgSend_33Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_33 = - __objc_msgSend_33Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_33Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_33 = __objc_msgSend_33Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileURLWithPath_isDirectory_1 = _registerName1( "fileURLWithPath:isDirectory:", @@ -1103,26 +1104,26 @@ class PedometerBindings { return __objc_msgSend_34(obj, sel, path, isDir); } - late final __objc_msgSend_34Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_34 = - __objc_msgSend_34Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_34Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_34 = __objc_msgSend_34Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_fileURLWithPath_1 = _registerName1("fileURLWithPath:"); ffi.Pointer _objc_msgSend_35( @@ -1133,24 +1134,24 @@ class PedometerBindings { return __objc_msgSend_35(obj, sel, path); } - late final __objc_msgSend_35Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_35 = - __objc_msgSend_35Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_35Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_35 = __objc_msgSend_35Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initFileURLWithFileSystemRepresentation_isDirectory_relativeToURL_1 = _registerName1( @@ -1166,28 +1167,28 @@ class PedometerBindings { return __objc_msgSend_36(obj, sel, path, isDir, baseURL); } - late final __objc_msgSend_36Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_36 = - __objc_msgSend_36Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_36Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_36 = __objc_msgSend_36Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_fileURLWithFileSystemRepresentation_isDirectory_relativeToURL_1 = _registerName1( @@ -1203,28 +1204,28 @@ class PedometerBindings { return __objc_msgSend_37(obj, sel, path, isDir, baseURL); } - late final __objc_msgSend_37Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_37 = - __objc_msgSend_37Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_37Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_37 = __objc_msgSend_37Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_initWithString_1 = _registerName1("initWithString:"); instancetype _objc_msgSend_38( @@ -1235,24 +1236,24 @@ class PedometerBindings { return __objc_msgSend_38(obj, sel, URLString); } - late final __objc_msgSend_38Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_38 = - __objc_msgSend_38Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_38Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_38 = __objc_msgSend_38Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithString_relativeToURL_1 = _registerName1( "initWithString:relativeToURL:", @@ -1266,26 +1267,26 @@ class PedometerBindings { return __objc_msgSend_39(obj, sel, URLString, baseURL); } - late final __objc_msgSend_39Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_39 = - __objc_msgSend_39Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_39Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_39 = __objc_msgSend_39Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLWithString_1 = _registerName1("URLWithString:"); late final _sel_URLWithString_relativeToURL_1 = _registerName1( @@ -1303,26 +1304,26 @@ class PedometerBindings { return __objc_msgSend_40(obj, sel, URLString, encodingInvalidCharacters); } - late final __objc_msgSend_40Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_40 = - __objc_msgSend_40Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_40Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_40 = __objc_msgSend_40Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_URLWithString_encodingInvalidCharacters_1 = _registerName1( "URLWithString:encodingInvalidCharacters:", @@ -1339,26 +1340,26 @@ class PedometerBindings { return __objc_msgSend_41(obj, sel, data, baseURL); } - late final __objc_msgSend_41Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_41 = - __objc_msgSend_41Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_41Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_41 = __objc_msgSend_41Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLWithDataRepresentation_relativeToURL_1 = _registerName1( "URLWithDataRepresentation:relativeToURL:", @@ -1372,26 +1373,26 @@ class PedometerBindings { return __objc_msgSend_42(obj, sel, data, baseURL); } - late final __objc_msgSend_42Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_42 = - __objc_msgSend_42Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_42Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_42 = __objc_msgSend_42Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initAbsoluteURLWithDataRepresentation_relativeToURL_1 = _registerName1("initAbsoluteURLWithDataRepresentation:relativeToURL:"); @@ -1405,22 +1406,22 @@ class PedometerBindings { return __objc_msgSend_43(obj, sel); } - late final __objc_msgSend_43Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_43 = - __objc_msgSend_43Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_43Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_43 = __objc_msgSend_43Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_absoluteString1 = _registerName1("absoluteString"); ffi.Pointer _objc_msgSend_44( @@ -1430,22 +1431,22 @@ class PedometerBindings { return __objc_msgSend_44(obj, sel); } - late final __objc_msgSend_44Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_44 = - __objc_msgSend_44Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_44Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_44 = __objc_msgSend_44Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_relativeString1 = _registerName1("relativeString"); late final _sel_baseURL1 = _registerName1("baseURL"); @@ -1456,22 +1457,22 @@ class PedometerBindings { return __objc_msgSend_45(obj, sel); } - late final __objc_msgSend_45Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_45 = - __objc_msgSend_45Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_45Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_45 = __objc_msgSend_45Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_absoluteURL1 = _registerName1("absoluteURL"); late final _sel_scheme1 = _registerName1("scheme"); @@ -1493,26 +1494,26 @@ class PedometerBindings { return __objc_msgSend_46(obj, sel, value, type); } - late final __objc_msgSend_46Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_46 = - __objc_msgSend_46Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_46Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_46 = __objc_msgSend_46Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithCoder_1 = _registerName1("initWithCoder:"); instancetype _objc_msgSend_47( @@ -1523,24 +1524,24 @@ class PedometerBindings { return __objc_msgSend_47(obj, sel, coder); } - late final __objc_msgSend_47Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_47 = - __objc_msgSend_47Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_47Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_47 = __objc_msgSend_47Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_valueWithBytes_objCType_1 = _registerName1( "valueWithBytes:objCType:", @@ -1554,26 +1555,26 @@ class PedometerBindings { return __objc_msgSend_48(obj, sel, value, type); } - late final __objc_msgSend_48Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_48 = - __objc_msgSend_48Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_48Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_48 = __objc_msgSend_48Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_value_withObjCType_1 = _registerName1("value:withObjCType:"); late final _sel_valueWithNonretainedObject_1 = _registerName1( @@ -1587,24 +1588,24 @@ class PedometerBindings { return __objc_msgSend_49(obj, sel, anObject); } - late final __objc_msgSend_49Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_49 = - __objc_msgSend_49Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_49Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_49 = __objc_msgSend_49Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_nonretainedObjectValue1 = _registerName1( "nonretainedObjectValue", @@ -1618,24 +1619,24 @@ class PedometerBindings { return __objc_msgSend_50(obj, sel, pointer); } - late final __objc_msgSend_50Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_50 = - __objc_msgSend_50Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_50Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_50 = __objc_msgSend_50Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pointerValue1 = _registerName1("pointerValue"); late final _sel_isEqualToValue_1 = _registerName1("isEqualToValue:"); @@ -1647,24 +1648,24 @@ class PedometerBindings { return __objc_msgSend_51(obj, sel, value); } - late final __objc_msgSend_51Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_51 = - __objc_msgSend_51Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_51Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_51 = __objc_msgSend_51Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getValue_1 = _registerName1("getValue:"); void _objc_msgSend_52( @@ -1675,24 +1676,24 @@ class PedometerBindings { return __objc_msgSend_52(obj, sel, value); } - late final __objc_msgSend_52Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_52 = - __objc_msgSend_52Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_52Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_52 = __objc_msgSend_52Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_valueWithRange_1 = _registerName1("valueWithRange:"); ffi.Pointer _objc_msgSend_53( @@ -1703,24 +1704,24 @@ class PedometerBindings { return __objc_msgSend_53(obj, sel, range); } - late final __objc_msgSend_53Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_53 = - __objc_msgSend_53Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_53Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_53 = __objc_msgSend_53Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_rangeValue1 = _registerName1("rangeValue"); late final _objc_msgSend_useVariants1 = @@ -1733,16 +1734,16 @@ class PedometerBindings { return __objc_msgSend_54(obj, sel); } - late final __objc_msgSend_54Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_54 = - __objc_msgSend_54Ptr - .asFunction< - _NSRange Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_54Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_54 = __objc_msgSend_54Ptr + .asFunction< + _NSRange Function(ffi.Pointer, ffi.Pointer) + >(); void _objc_msgSend_54_stret( ffi.Pointer<_NSRange> stret, @@ -1752,24 +1753,24 @@ class PedometerBindings { return __objc_msgSend_54_stret(stret, obj, sel); } - late final __objc_msgSend_54_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_54_stret = - __objc_msgSend_54_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_54_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_54_stret = __objc_msgSend_54_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_keyPathsForValuesAffectingValueForKey_1 = _registerName1( "keyPathsForValuesAffectingValueForKey:", @@ -1782,24 +1783,24 @@ class PedometerBindings { return __objc_msgSend_55(obj, sel, key); } - late final __objc_msgSend_55Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_55 = - __objc_msgSend_55Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_55Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_55 = __objc_msgSend_55Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_automaticallyNotifiesObserversForKey_1 = _registerName1( "automaticallyNotifiesObserversForKey:", @@ -1812,24 +1813,24 @@ class PedometerBindings { return __objc_msgSend_56(obj, sel, key); } - late final __objc_msgSend_56Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_56 = - __objc_msgSend_56Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_56Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_56 = __objc_msgSend_56Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSArray1 = _getClass1("NSArray"); late final _sel_objectAtIndex_1 = _registerName1("objectAtIndex:"); @@ -1841,25 +1842,25 @@ class PedometerBindings { return __objc_msgSend_57(obj, sel, index); } - late final __objc_msgSend_57Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_57 = - __objc_msgSend_57Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); - + late final __objc_msgSend_57Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_57 = __objc_msgSend_57Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); + late final _sel_initWithObjects_count_1 = _registerName1( "initWithObjects:count:", ); @@ -1872,26 +1873,26 @@ class PedometerBindings { return __objc_msgSend_58(obj, sel, objects, cnt); } - late final __objc_msgSend_58Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_58 = - __objc_msgSend_58Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - int, - ) - >(); + late final __objc_msgSend_58Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_58 = __objc_msgSend_58Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + int, + ) + >(); late final _sel_arrayByAddingObject_1 = _registerName1( "arrayByAddingObject:", @@ -1904,24 +1905,24 @@ class PedometerBindings { return __objc_msgSend_59(obj, sel, anObject); } - late final __objc_msgSend_59Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_59 = - __objc_msgSend_59Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_59Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_59 = __objc_msgSend_59Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_arrayByAddingObjectsFromArray_1 = _registerName1( "arrayByAddingObjectsFromArray:", @@ -1934,24 +1935,24 @@ class PedometerBindings { return __objc_msgSend_60(obj, sel, otherArray); } - late final __objc_msgSend_60Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_60 = - __objc_msgSend_60Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_60Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_60 = __objc_msgSend_60Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_componentsJoinedByString_1 = _registerName1( "componentsJoinedByString:", @@ -1964,24 +1965,24 @@ class PedometerBindings { return __objc_msgSend_61(obj, sel, separator); } - late final __objc_msgSend_61Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_61 = - __objc_msgSend_61Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_61Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_61 = __objc_msgSend_61Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_containsObject_1 = _registerName1("containsObject:"); late final _sel_descriptionWithLocale_1 = _registerName1( @@ -1995,24 +1996,24 @@ class PedometerBindings { return __objc_msgSend_62(obj, sel, locale); } - late final __objc_msgSend_62Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_62 = - __objc_msgSend_62Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_62Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_62 = __objc_msgSend_62Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_descriptionWithLocale_indent_1 = _registerName1( "descriptionWithLocale:indent:", @@ -2026,26 +2027,26 @@ class PedometerBindings { return __objc_msgSend_63(obj, sel, locale, level); } - late final __objc_msgSend_63Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_63 = - __objc_msgSend_63Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_63Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_63 = __objc_msgSend_63Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_firstObjectCommonWithArray_1 = _registerName1( "firstObjectCommonWithArray:", @@ -2058,24 +2059,24 @@ class PedometerBindings { return __objc_msgSend_64(obj, sel, otherArray); } - late final __objc_msgSend_64Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_64 = - __objc_msgSend_64Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_64Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_64 = __objc_msgSend_64Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getObjects_range_1 = _registerName1("getObjects:range:"); void _objc_msgSend_65( @@ -2087,26 +2088,26 @@ class PedometerBindings { return __objc_msgSend_65(obj, sel, objects, range); } - late final __objc_msgSend_65Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_65 = - __objc_msgSend_65Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - _NSRange, - ) - >(); + late final __objc_msgSend_65Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_65 = __objc_msgSend_65Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + _NSRange, + ) + >(); late final _sel_indexOfObject_1 = _registerName1("indexOfObject:"); int _objc_msgSend_66( @@ -2117,24 +2118,24 @@ class PedometerBindings { return __objc_msgSend_66(obj, sel, anObject); } - late final __objc_msgSend_66Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_66 = - __objc_msgSend_66Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_66Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_66 = __objc_msgSend_66Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_indexOfObject_inRange_1 = _registerName1( "indexOfObject:inRange:", @@ -2148,26 +2149,26 @@ class PedometerBindings { return __objc_msgSend_67(obj, sel, anObject, range); } - late final __objc_msgSend_67Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_67 = - __objc_msgSend_67Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_67Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_67 = __objc_msgSend_67Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_indexOfObjectIdenticalTo_1 = _registerName1( "indexOfObjectIdenticalTo:", @@ -2184,24 +2185,24 @@ class PedometerBindings { return __objc_msgSend_68(obj, sel, otherArray); } - late final __objc_msgSend_68Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_68 = - __objc_msgSend_68Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_68Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_68 = __objc_msgSend_68Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_firstObject1 = _registerName1("firstObject"); late final _sel_lastObject1 = _registerName1("lastObject"); @@ -2213,22 +2214,22 @@ class PedometerBindings { return __objc_msgSend_69(obj, sel); } - late final __objc_msgSend_69Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_69 = - __objc_msgSend_69Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_69Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_69 = __objc_msgSend_69Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_reverseObjectEnumerator1 = _registerName1( "reverseObjectEnumerator", @@ -2255,42 +2256,42 @@ class PedometerBindings { return __objc_msgSend_70(obj, sel, comparator, context); } - late final __objc_msgSend_70Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_70 = - __objc_msgSend_70Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_70Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_70 = __objc_msgSend_70Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >, + ffi.Pointer, + ) + >(); late final _sel_sortedArrayUsingFunction_context_hint_1 = _registerName1( "sortedArrayUsingFunction:context:hint:", @@ -2314,44 +2315,44 @@ class PedometerBindings { return __objc_msgSend_71(obj, sel, comparator, context, hint); } - late final __objc_msgSend_71Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_71 = - __objc_msgSend_71Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_71Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_71 = __objc_msgSend_71Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sortedArrayUsingSelector_1 = _registerName1( "sortedArrayUsingSelector:", @@ -2364,24 +2365,24 @@ class PedometerBindings { return __objc_msgSend_72(obj, sel, comparator); } - late final __objc_msgSend_72Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_72 = - __objc_msgSend_72Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_72Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_72 = __objc_msgSend_72Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_subarrayWithRange_1 = _registerName1("subarrayWithRange:"); ffi.Pointer _objc_msgSend_73( @@ -2392,24 +2393,24 @@ class PedometerBindings { return __objc_msgSend_73(obj, sel, range); } - late final __objc_msgSend_73Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_73 = - __objc_msgSend_73Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_73Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_73 = __objc_msgSend_73Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _class_NSError1 = _getClass1("NSError"); late final _sel_initWithDomain_code_userInfo_1 = _registerName1( @@ -2425,28 +2426,28 @@ class PedometerBindings { return __objc_msgSend_74(obj, sel, domain, code, dict); } - late final __objc_msgSend_74Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_74 = - __objc_msgSend_74Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_74Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_74 = __objc_msgSend_74Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_errorWithDomain_code_userInfo_1 = _registerName1( "errorWithDomain:code:userInfo:", @@ -2457,16 +2458,16 @@ class PedometerBindings { return __objc_msgSend_75(obj, sel); } - late final __objc_msgSend_75Ptr = _lookup< - ffi.NativeFunction< - ffi.Long Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_75 = - __objc_msgSend_75Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_75Ptr = + _lookup< + ffi.NativeFunction< + ffi.Long Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_75 = __objc_msgSend_75Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_userInfo1 = _registerName1("userInfo"); late final _sel_localizedDescription1 = _registerName1( @@ -2488,22 +2489,22 @@ class PedometerBindings { return __objc_msgSend_76(obj, sel); } - late final __objc_msgSend_76Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_76 = - __objc_msgSend_76Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_76Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_76 = __objc_msgSend_76Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_recoveryAttempter1 = _registerName1("recoveryAttempter"); late final _sel_helpAnchor1 = _registerName1("helpAnchor"); @@ -2515,22 +2516,22 @@ class PedometerBindings { return __objc_msgSend_77(obj, sel); } - late final __objc_msgSend_77Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_77 = - __objc_msgSend_77Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_77Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_77 = __objc_msgSend_77Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); ffi.Pointer<_ObjCBlockDesc> _newBlockDesc1() { final d = pkg_ffi.calloc.allocate<_ObjCBlockDesc>( @@ -2568,12 +2569,14 @@ class PedometerBindings { return __Block_copy(value); } - late final __Block_copyPtr = _lookup< - ffi.NativeFunction Function(ffi.Pointer)> - >('_Block_copy'); - late final __Block_copy = - __Block_copyPtr - .asFunction Function(ffi.Pointer)>(); + late final __Block_copyPtr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) + > + >('_Block_copy'); + late final __Block_copy = __Block_copyPtr + .asFunction Function(ffi.Pointer)>(); void _Block_release(ffi.Pointer value) { return __Block_release(value); @@ -2583,8 +2586,8 @@ class PedometerBindings { _lookup)>>( '_Block_release', ); - late final __Block_release = - __Block_releasePtr.asFunction)>(); + late final __Block_release = __Block_releasePtr + .asFunction)>(); late final _objc_releaseFinalizer11 = ffi.NativeFinalizer( __Block_releasePtr.cast(), @@ -2601,26 +2604,26 @@ class PedometerBindings { return __objc_msgSend_78(obj, sel, errorDomain, provider); } - late final __objc_msgSend_78Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_78 = - __objc_msgSend_78Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_78Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_78 = __objc_msgSend_78Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_userInfoValueProviderForDomain_1 = _registerName1( "userInfoValueProviderForDomain:", @@ -2635,28 +2638,28 @@ class PedometerBindings { return __objc_msgSend_79(obj, sel, err, userInfoKey, errorDomain); } - late final __objc_msgSend_79Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_79 = - __objc_msgSend_79Ptr - .asFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_79Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_79 = __objc_msgSend_79Ptr + .asFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setKeys_triggerChangeNotificationsForDependentKey_1 = _registerName1("setKeys:triggerChangeNotificationsForDependentKey:"); @@ -2669,26 +2672,26 @@ class PedometerBindings { return __objc_msgSend_80(obj, sel, keys, dependentKey); } - late final __objc_msgSend_80Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_80 = - __objc_msgSend_80Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_80Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_80 = __objc_msgSend_80Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_classFallbacksForKeyedArchiver1 = _registerName1( "classFallbacksForKeyedArchiver", @@ -2706,26 +2709,26 @@ class PedometerBindings { return __objc_msgSend_81(obj, sel, url, error); } - late final __objc_msgSend_81Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_81 = - __objc_msgSend_81Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_81Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_81 = __objc_msgSend_81Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_makeObjectsPerformSelector_1 = _registerName1( "makeObjectsPerformSelector:", @@ -2742,29 +2745,29 @@ class PedometerBindings { return __objc_msgSend_82(obj, sel, aSelector, argument); } - late final __objc_msgSend_82Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_82 = - __objc_msgSend_82Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); - - late final _class_NSIndexSet1 = _getClass1("NSIndexSet"); - late final _sel_indexSet1 = _registerName1("indexSet"); + late final __objc_msgSend_82Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_82 = __objc_msgSend_82Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); + + late final _class_NSIndexSet1 = _getClass1("NSIndexSet"); + late final _sel_indexSet1 = _registerName1("indexSet"); late final _sel_indexSetWithIndex_1 = _registerName1("indexSetWithIndex:"); late final _sel_indexSetWithIndexesInRange_1 = _registerName1( "indexSetWithIndexesInRange:", @@ -2777,24 +2780,24 @@ class PedometerBindings { return __objc_msgSend_83(obj, sel, range); } - late final __objc_msgSend_83Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_83 = - __objc_msgSend_83Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_83Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_83 = __objc_msgSend_83Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_initWithIndexesInRange_1 = _registerName1( "initWithIndexesInRange:", @@ -2808,24 +2811,24 @@ class PedometerBindings { return __objc_msgSend_84(obj, sel, indexSet); } - late final __objc_msgSend_84Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_84 = - __objc_msgSend_84Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_84Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_84 = __objc_msgSend_84Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithIndex_1 = _registerName1("initWithIndex:"); late final _sel_isEqualToIndexSet_1 = _registerName1("isEqualToIndexSet:"); @@ -2837,24 +2840,24 @@ class PedometerBindings { return __objc_msgSend_85(obj, sel, indexSet); } - late final __objc_msgSend_85Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_85 = - __objc_msgSend_85Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_85Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_85 = __objc_msgSend_85Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_firstIndex1 = _registerName1("firstIndex"); late final _sel_lastIndex1 = _registerName1("lastIndex"); @@ -2869,20 +2872,20 @@ class PedometerBindings { return __objc_msgSend_86(obj, sel, value); } - late final __objc_msgSend_86Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_86 = - __objc_msgSend_86Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_86Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_86 = __objc_msgSend_86Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_indexLessThanIndex_1 = _registerName1("indexLessThanIndex:"); late final _sel_indexGreaterThanOrEqualToIndex_1 = _registerName1( @@ -2904,28 +2907,28 @@ class PedometerBindings { return __objc_msgSend_87(obj, sel, indexBuffer, bufferSize, range); } - late final __objc_msgSend_87Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_NSRange>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_87 = - __objc_msgSend_87Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_NSRange>, - ) - >(); + late final __objc_msgSend_87Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_NSRange>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_87 = __objc_msgSend_87Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_NSRange>, + ) + >(); late final _sel_countOfIndexesInRange_1 = _registerName1( "countOfIndexesInRange:", @@ -2938,24 +2941,20 @@ class PedometerBindings { return __objc_msgSend_88(obj, sel, range); } - late final __objc_msgSend_88Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_88 = - __objc_msgSend_88Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_88Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_88 = __objc_msgSend_88Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer, _NSRange) + >(); late final _sel_containsIndex_1 = _registerName1("containsIndex:"); bool _objc_msgSend_89( @@ -2966,20 +2965,20 @@ class PedometerBindings { return __objc_msgSend_89(obj, sel, value); } - late final __objc_msgSend_89Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_89 = - __objc_msgSend_89Ptr - .asFunction< - bool Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_89Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_89 = __objc_msgSend_89Ptr + .asFunction< + bool Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_containsIndexesInRange_1 = _registerName1( "containsIndexesInRange:", @@ -2992,20 +2991,20 @@ class PedometerBindings { return __objc_msgSend_90(obj, sel, range); } - late final __objc_msgSend_90Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function(ffi.Pointer, ffi.Pointer, _NSRange) - > - >('objc_msgSend'); - late final __objc_msgSend_90 = - __objc_msgSend_90Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_90Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_90 = __objc_msgSend_90Ptr + .asFunction< + bool Function(ffi.Pointer, ffi.Pointer, _NSRange) + >(); late final _sel_containsIndexes_1 = _registerName1("containsIndexes:"); late final _sel_intersectsIndexesInRange_1 = _registerName1( @@ -3022,24 +3021,24 @@ class PedometerBindings { return __objc_msgSend_91(obj, sel, block); } - late final __objc_msgSend_91Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_91 = - __objc_msgSend_91Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_91Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_91 = __objc_msgSend_91Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateIndexesWithOptions_usingBlock_1 = _registerName1( "enumerateIndexesWithOptions:usingBlock:", @@ -3053,26 +3052,26 @@ class PedometerBindings { return __objc_msgSend_92(obj, sel, opts, block); } - late final __objc_msgSend_92Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_92 = - __objc_msgSend_92Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_92Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_92 = __objc_msgSend_92Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateIndexesInRange_options_usingBlock_1 = _registerName1( "enumerateIndexesInRange:options:usingBlock:", @@ -3087,28 +3086,28 @@ class PedometerBindings { return __objc_msgSend_93(obj, sel, range, opts, block); } - late final __objc_msgSend_93Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_93 = - __objc_msgSend_93Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_93Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_93 = __objc_msgSend_93Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexPassingTest_1 = _registerName1("indexPassingTest:"); int _objc_msgSend_94( @@ -3119,24 +3118,24 @@ class PedometerBindings { return __objc_msgSend_94(obj, sel, predicate); } - late final __objc_msgSend_94Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_94 = - __objc_msgSend_94Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_94Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_94 = __objc_msgSend_94Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexWithOptions_passingTest_1 = _registerName1( "indexWithOptions:passingTest:", @@ -3150,26 +3149,26 @@ class PedometerBindings { return __objc_msgSend_95(obj, sel, opts, predicate); } - late final __objc_msgSend_95Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_95 = - __objc_msgSend_95Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_95Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_95 = __objc_msgSend_95Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexInRange_options_passingTest_1 = _registerName1( "indexInRange:options:passingTest:", @@ -3184,28 +3183,28 @@ class PedometerBindings { return __objc_msgSend_96(obj, sel, range, opts, predicate); } - late final __objc_msgSend_96Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_96 = - __objc_msgSend_96Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_96Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_96 = __objc_msgSend_96Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexesPassingTest_1 = _registerName1("indexesPassingTest:"); ffi.Pointer _objc_msgSend_97( @@ -3216,24 +3215,24 @@ class PedometerBindings { return __objc_msgSend_97(obj, sel, predicate); } - late final __objc_msgSend_97Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_97 = - __objc_msgSend_97Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_97Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_97 = __objc_msgSend_97Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexesWithOptions_passingTest_1 = _registerName1( "indexesWithOptions:passingTest:", @@ -3247,26 +3246,26 @@ class PedometerBindings { return __objc_msgSend_98(obj, sel, opts, predicate); } - late final __objc_msgSend_98Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_98 = - __objc_msgSend_98Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_98Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_98 = __objc_msgSend_98Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexesInRange_options_passingTest_1 = _registerName1( "indexesInRange:options:passingTest:", @@ -3281,28 +3280,28 @@ class PedometerBindings { return __objc_msgSend_99(obj, sel, range, opts, predicate); } - late final __objc_msgSend_99Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_99 = - __objc_msgSend_99Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_99Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_99 = __objc_msgSend_99Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateRangesUsingBlock_1 = _registerName1( "enumerateRangesUsingBlock:", @@ -3315,24 +3314,24 @@ class PedometerBindings { return __objc_msgSend_100(obj, sel, block); } - late final __objc_msgSend_100Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_100 = - __objc_msgSend_100Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_100Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_100 = __objc_msgSend_100Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateRangesWithOptions_usingBlock_1 = _registerName1( "enumerateRangesWithOptions:usingBlock:", @@ -3346,26 +3345,26 @@ class PedometerBindings { return __objc_msgSend_101(obj, sel, opts, block); } - late final __objc_msgSend_101Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_101 = - __objc_msgSend_101Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_101Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_101 = __objc_msgSend_101Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateRangesInRange_options_usingBlock_1 = _registerName1( "enumerateRangesInRange:options:usingBlock:", @@ -3380,28 +3379,28 @@ class PedometerBindings { return __objc_msgSend_102(obj, sel, range, opts, block); } - late final __objc_msgSend_102Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_102 = - __objc_msgSend_102Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_102Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_102 = __objc_msgSend_102Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_objectsAtIndexes_1 = _registerName1("objectsAtIndexes:"); ffi.Pointer _objc_msgSend_103( @@ -3412,24 +3411,24 @@ class PedometerBindings { return __objc_msgSend_103(obj, sel, indexes); } - late final __objc_msgSend_103Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_103 = - __objc_msgSend_103Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_103Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_103 = __objc_msgSend_103Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_objectAtIndexedSubscript_1 = _registerName1( "objectAtIndexedSubscript:", @@ -3445,24 +3444,24 @@ class PedometerBindings { return __objc_msgSend_104(obj, sel, block); } - late final __objc_msgSend_104Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_104 = - __objc_msgSend_104Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_104Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_104 = __objc_msgSend_104Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateObjectsWithOptions_usingBlock_1 = _registerName1( "enumerateObjectsWithOptions:usingBlock:", @@ -3476,26 +3475,26 @@ class PedometerBindings { return __objc_msgSend_105(obj, sel, opts, block); } - late final __objc_msgSend_105Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_105 = - __objc_msgSend_105Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_105Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_105 = __objc_msgSend_105Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateObjectsAtIndexes_options_usingBlock_1 = _registerName1("enumerateObjectsAtIndexes:options:usingBlock:"); @@ -3509,28 +3508,28 @@ class PedometerBindings { return __objc_msgSend_106(obj, sel, s, opts, block); } - late final __objc_msgSend_106Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_106 = - __objc_msgSend_106Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_106Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_106 = __objc_msgSend_106Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexOfObjectPassingTest_1 = _registerName1( "indexOfObjectPassingTest:", @@ -3543,24 +3542,24 @@ class PedometerBindings { return __objc_msgSend_107(obj, sel, predicate); } - late final __objc_msgSend_107Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_107 = - __objc_msgSend_107Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_107Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_107 = __objc_msgSend_107Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexOfObjectWithOptions_passingTest_1 = _registerName1( "indexOfObjectWithOptions:passingTest:", @@ -3574,26 +3573,26 @@ class PedometerBindings { return __objc_msgSend_108(obj, sel, opts, predicate); } - late final __objc_msgSend_108Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_108 = - __objc_msgSend_108Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_108Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_108 = __objc_msgSend_108Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexOfObjectAtIndexes_options_passingTest_1 = _registerName1( "indexOfObjectAtIndexes:options:passingTest:", @@ -3608,28 +3607,28 @@ class PedometerBindings { return __objc_msgSend_109(obj, sel, s, opts, predicate); } - late final __objc_msgSend_109Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_109 = - __objc_msgSend_109Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_109Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_109 = __objc_msgSend_109Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexesOfObjectsPassingTest_1 = _registerName1( "indexesOfObjectsPassingTest:", @@ -3642,24 +3641,24 @@ class PedometerBindings { return __objc_msgSend_110(obj, sel, predicate); } - late final __objc_msgSend_110Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_110 = - __objc_msgSend_110Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_110Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_110 = __objc_msgSend_110Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexesOfObjectsWithOptions_passingTest_1 = _registerName1( "indexesOfObjectsWithOptions:passingTest:", @@ -3673,26 +3672,26 @@ class PedometerBindings { return __objc_msgSend_111(obj, sel, opts, predicate); } - late final __objc_msgSend_111Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_111 = - __objc_msgSend_111Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_111Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_111 = __objc_msgSend_111Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexesOfObjectsAtIndexes_options_passingTest_1 = _registerName1("indexesOfObjectsAtIndexes:options:passingTest:"); @@ -3706,28 +3705,28 @@ class PedometerBindings { return __objc_msgSend_112(obj, sel, s, opts, predicate); } - late final __objc_msgSend_112Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_112 = - __objc_msgSend_112Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_112Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_112 = __objc_msgSend_112Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_sortedArrayUsingComparator_1 = _registerName1( "sortedArrayUsingComparator:", @@ -3740,24 +3739,24 @@ class PedometerBindings { return __objc_msgSend_113(obj, sel, cmptr); } - late final __objc_msgSend_113Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_113 = - __objc_msgSend_113Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_113Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_113 = __objc_msgSend_113Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_sortedArrayWithOptions_usingComparator_1 = _registerName1( "sortedArrayWithOptions:usingComparator:", @@ -3771,26 +3770,26 @@ class PedometerBindings { return __objc_msgSend_114(obj, sel, opts, cmptr); } - late final __objc_msgSend_114Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_114 = - __objc_msgSend_114Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_114Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_114 = __objc_msgSend_114Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_indexOfObject_inSortedRange_options_usingComparator_1 = _registerName1("indexOfObject:inSortedRange:options:usingComparator:"); @@ -3805,30 +3804,30 @@ class PedometerBindings { return __objc_msgSend_115(obj, sel, obj1, r, opts, cmp); } - late final __objc_msgSend_115Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_115 = - __objc_msgSend_115Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_115Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_115 = __objc_msgSend_115Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_array1 = _registerName1("array"); late final _sel_arrayWithObject_1 = _registerName1("arrayWithObject:"); @@ -3840,24 +3839,24 @@ class PedometerBindings { return __objc_msgSend_116(obj, sel, anObject); } - late final __objc_msgSend_116Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_116 = - __objc_msgSend_116Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_116Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_116 = __objc_msgSend_116Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_arrayWithObjects_count_1 = _registerName1( "arrayWithObjects:count:", @@ -3872,24 +3871,24 @@ class PedometerBindings { return __objc_msgSend_117(obj, sel, array); } - late final __objc_msgSend_117Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_117 = - __objc_msgSend_117Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_117Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_117 = __objc_msgSend_117Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithObjects_1 = _registerName1("initWithObjects:"); late final _sel_initWithArray_1 = _registerName1("initWithArray:"); @@ -3905,26 +3904,26 @@ class PedometerBindings { return __objc_msgSend_118(obj, sel, array, flag); } - late final __objc_msgSend_118Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_118 = - __objc_msgSend_118Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_118Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_118 = __objc_msgSend_118Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_initWithContentsOfURL_error_1 = _registerName1( "initWithContentsOfURL:error:", @@ -3938,26 +3937,26 @@ class PedometerBindings { return __objc_msgSend_119(obj, sel, url, error); } - late final __objc_msgSend_119Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_119 = - __objc_msgSend_119Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_119Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_119 = __objc_msgSend_119Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_arrayWithContentsOfURL_error_1 = _registerName1( "arrayWithContentsOfURL:error:", @@ -3974,28 +3973,28 @@ class PedometerBindings { return __objc_msgSend_120(obj, sel, other, options, block); } - late final __objc_msgSend_120Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_120 = - __objc_msgSend_120Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_120Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_120 = __objc_msgSend_120Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_differenceFromArray_withOptions_1 = _registerName1( "differenceFromArray:withOptions:", @@ -4009,26 +4008,26 @@ class PedometerBindings { return __objc_msgSend_121(obj, sel, other, options); } - late final __objc_msgSend_121Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_121 = - __objc_msgSend_121Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_121Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_121 = __objc_msgSend_121Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_differenceFromArray_1 = _registerName1( "differenceFromArray:", @@ -4044,24 +4043,24 @@ class PedometerBindings { return __objc_msgSend_122(obj, sel, difference); } - late final __objc_msgSend_122Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_122 = - __objc_msgSend_122Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_122Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_122 = __objc_msgSend_122Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getObjects_1 = _registerName1("getObjects:"); void _objc_msgSend_123( @@ -4072,24 +4071,24 @@ class PedometerBindings { return __objc_msgSend_123(obj, sel, objects); } - late final __objc_msgSend_123Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_123 = - __objc_msgSend_123Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_123Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_123 = __objc_msgSend_123Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_arrayWithContentsOfFile_1 = _registerName1( "arrayWithContentsOfFile:", @@ -4102,24 +4101,24 @@ class PedometerBindings { return __objc_msgSend_124(obj, sel, path); } - late final __objc_msgSend_124Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_124 = - __objc_msgSend_124Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_124Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_124 = __objc_msgSend_124Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_arrayWithContentsOfURL_1 = _registerName1( "arrayWithContentsOfURL:", @@ -4132,24 +4131,24 @@ class PedometerBindings { return __objc_msgSend_125(obj, sel, url); } - late final __objc_msgSend_125Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_125 = - __objc_msgSend_125Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_125Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_125 = __objc_msgSend_125Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithContentsOfFile_1 = _registerName1( "initWithContentsOfFile:", @@ -4169,26 +4168,26 @@ class PedometerBindings { return __objc_msgSend_126(obj, sel, url, atomically); } - late final __objc_msgSend_126Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_126 = - __objc_msgSend_126Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_126Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_126 = __objc_msgSend_126Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_pathsMatchingExtensions_1 = _registerName1( "pathsMatchingExtensions:", @@ -4204,26 +4203,26 @@ class PedometerBindings { return __objc_msgSend_127(obj, sel, value, key); } - late final __objc_msgSend_127Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_127 = - __objc_msgSend_127Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_127Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_127 = __objc_msgSend_127Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addObserver_toObjectsAtIndexes_forKeyPath_options_context_1 = _registerName1( @@ -4249,32 +4248,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_128Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_128 = - __objc_msgSend_128Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_128Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_128 = __objc_msgSend_128Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_removeObserver_fromObjectsAtIndexes_forKeyPath_context_1 = _registerName1("removeObserver:fromObjectsAtIndexes:forKeyPath:context:"); @@ -4289,30 +4288,30 @@ class PedometerBindings { return __objc_msgSend_129(obj, sel, observer, indexes, keyPath, context); } - late final __objc_msgSend_129Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_129 = - __objc_msgSend_129Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_129Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_129 = __objc_msgSend_129Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeObserver_fromObjectsAtIndexes_forKeyPath_1 = _registerName1("removeObserver:fromObjectsAtIndexes:forKeyPath:"); @@ -4326,28 +4325,28 @@ class PedometerBindings { return __objc_msgSend_130(obj, sel, observer, indexes, keyPath); } - late final __objc_msgSend_130Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_130 = - __objc_msgSend_130Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_130Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_130 = __objc_msgSend_130Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addObserver_forKeyPath_options_context_1 = _registerName1( "addObserver:forKeyPath:options:context:", @@ -4363,30 +4362,30 @@ class PedometerBindings { return __objc_msgSend_131(obj, sel, observer, keyPath, options, context); } - late final __objc_msgSend_131Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_131 = - __objc_msgSend_131Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_131Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_131 = __objc_msgSend_131Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_removeObserver_forKeyPath_context_1 = _registerName1( "removeObserver:forKeyPath:context:", @@ -4401,61 +4400,61 @@ class PedometerBindings { return __objc_msgSend_132(obj, sel, observer, keyPath, context); } - late final __objc_msgSend_132Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_132 = - __objc_msgSend_132Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); - - late final _sel_removeObserver_forKeyPath_1 = _registerName1( - "removeObserver:forKeyPath:", - ); - void _objc_msgSend_133( - ffi.Pointer obj, - ffi.Pointer sel, - ffi.Pointer observer, - ffi.Pointer keyPath, + late final __objc_msgSend_132Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_132 = __objc_msgSend_132Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); + + late final _sel_removeObserver_forKeyPath_1 = _registerName1( + "removeObserver:forKeyPath:", + ); + void _objc_msgSend_133( + ffi.Pointer obj, + ffi.Pointer sel, + ffi.Pointer observer, + ffi.Pointer keyPath, ) { return __objc_msgSend_133(obj, sel, observer, keyPath); } - late final __objc_msgSend_133Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_133 = - __objc_msgSend_133Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_133Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_133 = __objc_msgSend_133Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sortedArrayUsingDescriptors_1 = _registerName1( "sortedArrayUsingDescriptors:", @@ -4473,26 +4472,26 @@ class PedometerBindings { return __objc_msgSend_134(obj, sel, predicateFormat, arguments); } - late final __objc_msgSend_134Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_134 = - __objc_msgSend_134Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_134Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_134 = __objc_msgSend_134Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_predicateWithFormat_1 = _registerName1( "predicateWithFormat:", @@ -4505,24 +4504,24 @@ class PedometerBindings { return __objc_msgSend_135(obj, sel, predicateFormat); } - late final __objc_msgSend_135Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_135 = - __objc_msgSend_135Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_135Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_135 = __objc_msgSend_135Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_predicateWithFormat_arguments_1 = _registerName1( "predicateWithFormat:arguments:", @@ -4536,26 +4535,26 @@ class PedometerBindings { return __objc_msgSend_136(obj, sel, predicateFormat, argList); } - late final __objc_msgSend_136Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_136 = - __objc_msgSend_136Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_136Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_136 = __objc_msgSend_136Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_predicateFromMetadataQueryString_1 = _registerName1( "predicateFromMetadataQueryString:", @@ -4568,24 +4567,24 @@ class PedometerBindings { return __objc_msgSend_137(obj, sel, queryString); } - late final __objc_msgSend_137Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_137 = - __objc_msgSend_137Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_137Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_137 = __objc_msgSend_137Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_predicateWithValue_1 = _registerName1("predicateWithValue:"); ffi.Pointer _objc_msgSend_138( @@ -4596,24 +4595,24 @@ class PedometerBindings { return __objc_msgSend_138(obj, sel, value); } - late final __objc_msgSend_138Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_138 = - __objc_msgSend_138Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_138Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_138 = __objc_msgSend_138Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _class_NSDictionary1 = _getClass1("NSDictionary"); late final _sel_objectForKey_1 = _registerName1("objectForKey:"); @@ -4631,28 +4630,28 @@ class PedometerBindings { return __objc_msgSend_139(obj, sel, objects, keys, cnt); } - late final __objc_msgSend_139Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_139 = - __objc_msgSend_139Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - int, - ) - >(); + late final __objc_msgSend_139Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_139 = __objc_msgSend_139Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + int, + ) + >(); late final _sel_allKeys1 = _registerName1("allKeys"); late final _sel_allKeysForObject_1 = _registerName1("allKeysForObject:"); @@ -4671,24 +4670,24 @@ class PedometerBindings { return __objc_msgSend_140(obj, sel, otherDictionary); } - late final __objc_msgSend_140Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_140 = - __objc_msgSend_140Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_140Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_140 = __objc_msgSend_140Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_objectsForKeys_notFoundMarker_1 = _registerName1( "objectsForKeys:notFoundMarker:", @@ -4702,26 +4701,26 @@ class PedometerBindings { return __objc_msgSend_141(obj, sel, keys, marker); } - late final __objc_msgSend_141Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_141 = - __objc_msgSend_141Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_141Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_141 = __objc_msgSend_141Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_keysSortedByValueUsingSelector_1 = _registerName1( "keysSortedByValueUsingSelector:", @@ -4739,28 +4738,28 @@ class PedometerBindings { return __objc_msgSend_142(obj, sel, objects, keys, count); } - late final __objc_msgSend_142Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_142 = - __objc_msgSend_142Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - int, - ) - >(); + late final __objc_msgSend_142Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_142 = __objc_msgSend_142Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + int, + ) + >(); late final _sel_objectForKeyedSubscript_1 = _registerName1( "objectForKeyedSubscript:", @@ -4776,24 +4775,24 @@ class PedometerBindings { return __objc_msgSend_143(obj, sel, block); } - late final __objc_msgSend_143Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_143 = - __objc_msgSend_143Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_143Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_143 = __objc_msgSend_143Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateKeysAndObjectsWithOptions_usingBlock_1 = _registerName1("enumerateKeysAndObjectsWithOptions:usingBlock:"); @@ -4806,26 +4805,26 @@ class PedometerBindings { return __objc_msgSend_144(obj, sel, opts, block); } - late final __objc_msgSend_144Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_144 = - __objc_msgSend_144Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_144Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_144 = __objc_msgSend_144Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_keysSortedByValueUsingComparator_1 = _registerName1( "keysSortedByValueUsingComparator:", @@ -4843,24 +4842,24 @@ class PedometerBindings { return __objc_msgSend_145(obj, sel, predicate); } - late final __objc_msgSend_145Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_145 = - __objc_msgSend_145Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_145Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_145 = __objc_msgSend_145Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_keysOfEntriesWithOptions_passingTest_1 = _registerName1( "keysOfEntriesWithOptions:passingTest:", @@ -4874,26 +4873,26 @@ class PedometerBindings { return __objc_msgSend_146(obj, sel, opts, predicate); } - late final __objc_msgSend_146Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_146 = - __objc_msgSend_146Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_146Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_146 = __objc_msgSend_146Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_getObjects_andKeys_1 = _registerName1("getObjects:andKeys:"); void _objc_msgSend_147( @@ -4905,26 +4904,26 @@ class PedometerBindings { return __objc_msgSend_147(obj, sel, objects, keys); } - late final __objc_msgSend_147Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_147 = - __objc_msgSend_147Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_147Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_147 = __objc_msgSend_147Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_dictionaryWithContentsOfFile_1 = _registerName1( "dictionaryWithContentsOfFile:", @@ -4937,24 +4936,24 @@ class PedometerBindings { return __objc_msgSend_148(obj, sel, path); } - late final __objc_msgSend_148Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_148 = - __objc_msgSend_148Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_148Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_148 = __objc_msgSend_148Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dictionaryWithContentsOfURL_1 = _registerName1( "dictionaryWithContentsOfURL:", @@ -4967,24 +4966,24 @@ class PedometerBindings { return __objc_msgSend_149(obj, sel, url); } - late final __objc_msgSend_149Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_149 = - __objc_msgSend_149Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_149Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_149 = __objc_msgSend_149Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dictionary1 = _registerName1("dictionary"); late final _sel_dictionaryWithObject_forKey_1 = _registerName1( @@ -4999,26 +4998,26 @@ class PedometerBindings { return __objc_msgSend_150(obj, sel, object, key); } - late final __objc_msgSend_150Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_150 = - __objc_msgSend_150Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_150Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_150 = __objc_msgSend_150Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dictionaryWithObjects_forKeys_count_1 = _registerName1( "dictionaryWithObjects:forKeys:count:", @@ -5037,24 +5036,24 @@ class PedometerBindings { return __objc_msgSend_151(obj, sel, dict); } - late final __objc_msgSend_151Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_151 = - __objc_msgSend_151Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_151Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_151 = __objc_msgSend_151Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dictionaryWithObjects_forKeys_1 = _registerName1( "dictionaryWithObjects:forKeys:", @@ -5068,26 +5067,26 @@ class PedometerBindings { return __objc_msgSend_152(obj, sel, objects, keys); } - late final __objc_msgSend_152Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_152 = - __objc_msgSend_152Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_152Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_152 = __objc_msgSend_152Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithObjectsAndKeys_1 = _registerName1( "initWithObjectsAndKeys:", @@ -5105,26 +5104,26 @@ class PedometerBindings { return __objc_msgSend_153(obj, sel, otherDictionary, flag); } - late final __objc_msgSend_153Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_153 = - __objc_msgSend_153Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_153Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_153 = __objc_msgSend_153Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_initWithObjects_forKeys_1 = _registerName1( "initWithObjects:forKeys:", @@ -5138,26 +5137,26 @@ class PedometerBindings { return __objc_msgSend_154(obj, sel, url, error); } - late final __objc_msgSend_154Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_154 = - __objc_msgSend_154Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_154Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_154 = __objc_msgSend_154Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_dictionaryWithContentsOfURL_error_1 = _registerName1( "dictionaryWithContentsOfURL:error:", @@ -5178,47 +5177,47 @@ class PedometerBindings { return __objc_msgSend_155(obj, sel, state, buffer, len); } - late final __objc_msgSend_155Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_155 = - __objc_msgSend_155Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - int, - ) - >(); + late final __objc_msgSend_155Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_155 = __objc_msgSend_155Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + int, + ) + >(); late final _sel_fileSize1 = _registerName1("fileSize"); int _objc_msgSend_156(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_156(obj, sel); } - late final __objc_msgSend_156Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLongLong Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_156 = - __objc_msgSend_156Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_156Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLongLong Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_156 = __objc_msgSend_156Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _class_NSDate1 = _getClass1("NSDate"); late final _sel_timeIntervalSinceReferenceDate1 = _registerName1( @@ -5231,16 +5230,16 @@ class PedometerBindings { return __objc_msgSend_157(obj, sel); } - late final __objc_msgSend_157Ptr = _lookup< - ffi.NativeFunction< - ffi.Double Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_157 = - __objc_msgSend_157Ptr - .asFunction< - double Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_157Ptr = + _lookup< + ffi.NativeFunction< + ffi.Double Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_157 = __objc_msgSend_157Ptr + .asFunction< + double Function(ffi.Pointer, ffi.Pointer) + >(); double _objc_msgSend_157_fpret( ffi.Pointer obj, @@ -5249,16 +5248,16 @@ class PedometerBindings { return __objc_msgSend_157_fpret(obj, sel); } - late final __objc_msgSend_157_fpretPtr = _lookup< - ffi.NativeFunction< - ffi.Double Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend_fpret'); - late final __objc_msgSend_157_fpret = - __objc_msgSend_157_fpretPtr - .asFunction< - double Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_157_fpretPtr = + _lookup< + ffi.NativeFunction< + ffi.Double Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend_fpret'); + late final __objc_msgSend_157_fpret = __objc_msgSend_157_fpretPtr + .asFunction< + double Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_initWithTimeIntervalSinceReferenceDate_1 = _registerName1( "initWithTimeIntervalSinceReferenceDate:", @@ -5271,24 +5270,24 @@ class PedometerBindings { return __objc_msgSend_158(obj, sel, ti); } - late final __objc_msgSend_158Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_158 = - __objc_msgSend_158Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - double, - ) - >(); + late final __objc_msgSend_158Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_158 = __objc_msgSend_158Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + double, + ) + >(); late final _sel_timeIntervalSinceDate_1 = _registerName1( "timeIntervalSinceDate:", @@ -5301,24 +5300,24 @@ class PedometerBindings { return __objc_msgSend_159(obj, sel, anotherDate); } - late final __objc_msgSend_159Ptr = _lookup< - ffi.NativeFunction< - ffi.Double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_159 = - __objc_msgSend_159Ptr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_159Ptr = + _lookup< + ffi.NativeFunction< + ffi.Double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_159 = __objc_msgSend_159Ptr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); double _objc_msgSend_159_fpret( ffi.Pointer obj, @@ -5328,24 +5327,24 @@ class PedometerBindings { return __objc_msgSend_159_fpret(obj, sel, anotherDate); } - late final __objc_msgSend_159_fpretPtr = _lookup< - ffi.NativeFunction< - ffi.Double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_fpret'); - late final __objc_msgSend_159_fpret = - __objc_msgSend_159_fpretPtr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_159_fpretPtr = + _lookup< + ffi.NativeFunction< + ffi.Double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_fpret'); + late final __objc_msgSend_159_fpret = __objc_msgSend_159_fpretPtr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_timeIntervalSinceNow1 = _registerName1( "timeIntervalSinceNow", @@ -5366,24 +5365,24 @@ class PedometerBindings { return __objc_msgSend_160(obj, sel, anotherDate); } - late final __objc_msgSend_160Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_160 = - __objc_msgSend_160Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_160Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_160 = __objc_msgSend_160Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_laterDate_1 = _registerName1("laterDate:"); late final _sel_compare_1 = _registerName1("compare:"); @@ -5395,24 +5394,24 @@ class PedometerBindings { return __objc_msgSend_161(obj, sel, other); } - late final __objc_msgSend_161Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_161 = - __objc_msgSend_161Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_161Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_161 = __objc_msgSend_161Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isEqualToDate_1 = _registerName1("isEqualToDate:"); bool _objc_msgSend_162( @@ -5423,24 +5422,24 @@ class PedometerBindings { return __objc_msgSend_162(obj, sel, otherDate); } - late final __objc_msgSend_162Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_162 = - __objc_msgSend_162Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_162Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_162 = __objc_msgSend_162Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_date1 = _registerName1("date"); late final _sel_dateWithTimeIntervalSinceNow_1 = _registerName1( @@ -5464,26 +5463,26 @@ class PedometerBindings { return __objc_msgSend_163(obj, sel, secsToBeAdded, date); } - late final __objc_msgSend_163Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_163 = - __objc_msgSend_163Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_163Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_163 = __objc_msgSend_163Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ) + >(); late final _sel_distantFuture1 = _registerName1("distantFuture"); ffi.Pointer _objc_msgSend_164( @@ -5493,22 +5492,22 @@ class PedometerBindings { return __objc_msgSend_164(obj, sel); } - late final __objc_msgSend_164Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_164 = - __objc_msgSend_164Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_164Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_164 = __objc_msgSend_164Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_distantPast1 = _registerName1("distantPast"); late final _sel_now1 = _registerName1("now"); @@ -5531,22 +5530,22 @@ class PedometerBindings { return __objc_msgSend_165(obj, sel); } - late final __objc_msgSend_165Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_165 = - __objc_msgSend_165Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_165Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_165 = __objc_msgSend_165Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileType1 = _registerName1("fileType"); late final _sel_filePosixPermissions1 = _registerName1( @@ -5568,16 +5567,19 @@ class PedometerBindings { return __objc_msgSend_166(obj, sel); } - late final __objc_msgSend_166Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedInt Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_166 = - __objc_msgSend_166Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_166Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedInt Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_166 = __objc_msgSend_166Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_fileHFSTypeCode1 = _registerName1("fileHFSTypeCode"); late final _sel_fileIsImmutable1 = _registerName1("fileIsImmutable"); @@ -5591,22 +5593,22 @@ class PedometerBindings { return __objc_msgSend_167(obj, sel); } - late final __objc_msgSend_167Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_167 = - __objc_msgSend_167Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_167Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_167 = __objc_msgSend_167Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileGroupOwnerAccountID1 = _registerName1( "fileGroupOwnerAccountID", @@ -5620,24 +5622,24 @@ class PedometerBindings { return __objc_msgSend_168(obj, sel, block); } - late final __objc_msgSend_168Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_168 = - __objc_msgSend_168Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_168Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_168 = __objc_msgSend_168Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_predicateFormat1 = _registerName1("predicateFormat"); late final _sel_predicateWithSubstitutionVariables_1 = _registerName1( @@ -5652,24 +5654,24 @@ class PedometerBindings { return __objc_msgSend_169(obj, sel, object); } - late final __objc_msgSend_169Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_169 = - __objc_msgSend_169Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_169Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_169 = __objc_msgSend_169Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_evaluateWithObject_substitutionVariables_1 = _registerName1( "evaluateWithObject:substitutionVariables:", @@ -5683,26 +5685,26 @@ class PedometerBindings { return __objc_msgSend_170(obj, sel, object, bindings); } - late final __objc_msgSend_170Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_170 = - __objc_msgSend_170Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_170Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_170 = __objc_msgSend_170Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_allowEvaluation1 = _registerName1("allowEvaluation"); late final _sel_filteredArrayUsingPredicate_1 = _registerName1( @@ -5716,24 +5718,24 @@ class PedometerBindings { return __objc_msgSend_171(obj, sel, predicate); } - late final __objc_msgSend_171Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_171 = - __objc_msgSend_171Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_171Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_171 = __objc_msgSend_171Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithChar_1 = _registerName1("initWithChar:"); ffi.Pointer _objc_msgSend_172( @@ -5744,24 +5746,24 @@ class PedometerBindings { return __objc_msgSend_172(obj, sel, value); } - late final __objc_msgSend_172Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Char, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_172 = - __objc_msgSend_172Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_172Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Char, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_172 = __objc_msgSend_172Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUnsignedChar_1 = _registerName1( "initWithUnsignedChar:", @@ -5774,24 +5776,24 @@ class PedometerBindings { return __objc_msgSend_173(obj, sel, value); } - late final __objc_msgSend_173Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedChar, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_173 = - __objc_msgSend_173Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_173Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedChar, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_173 = __objc_msgSend_173Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithShort_1 = _registerName1("initWithShort:"); ffi.Pointer _objc_msgSend_174( @@ -5802,24 +5804,24 @@ class PedometerBindings { return __objc_msgSend_174(obj, sel, value); } - late final __objc_msgSend_174Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Short, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_174 = - __objc_msgSend_174Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_174Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Short, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_174 = __objc_msgSend_174Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUnsignedShort_1 = _registerName1( "initWithUnsignedShort:", @@ -5832,24 +5834,24 @@ class PedometerBindings { return __objc_msgSend_175(obj, sel, value); } - late final __objc_msgSend_175Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedShort, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_175 = - __objc_msgSend_175Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_175Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedShort, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_175 = __objc_msgSend_175Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithInt_1 = _registerName1("initWithInt:"); ffi.Pointer _objc_msgSend_176( @@ -5860,24 +5862,24 @@ class PedometerBindings { return __objc_msgSend_176(obj, sel, value); } - late final __objc_msgSend_176Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_176 = - __objc_msgSend_176Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_176Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_176 = __objc_msgSend_176Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUnsignedInt_1 = _registerName1( "initWithUnsignedInt:", @@ -5890,24 +5892,24 @@ class PedometerBindings { return __objc_msgSend_177(obj, sel, value); } - late final __objc_msgSend_177Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedInt, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_177 = - __objc_msgSend_177Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_177Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedInt, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_177 = __objc_msgSend_177Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithLong_1 = _registerName1("initWithLong:"); ffi.Pointer _objc_msgSend_178( @@ -5918,24 +5920,24 @@ class PedometerBindings { return __objc_msgSend_178(obj, sel, value); } - late final __objc_msgSend_178Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_178 = - __objc_msgSend_178Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_178Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_178 = __objc_msgSend_178Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUnsignedLong_1 = _registerName1( "initWithUnsignedLong:", @@ -5948,24 +5950,24 @@ class PedometerBindings { return __objc_msgSend_179(obj, sel, value); } - late final __objc_msgSend_179Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_179 = - __objc_msgSend_179Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_179Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_179 = __objc_msgSend_179Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithLongLong_1 = _registerName1("initWithLongLong:"); ffi.Pointer _objc_msgSend_180( @@ -5976,24 +5978,24 @@ class PedometerBindings { return __objc_msgSend_180(obj, sel, value); } - late final __objc_msgSend_180Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.LongLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_180 = - __objc_msgSend_180Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_180Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.LongLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_180 = __objc_msgSend_180Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUnsignedLongLong_1 = _registerName1( "initWithUnsignedLongLong:", @@ -6006,24 +6008,24 @@ class PedometerBindings { return __objc_msgSend_181(obj, sel, value); } - late final __objc_msgSend_181Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLongLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_181 = - __objc_msgSend_181Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_181Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLongLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_181 = __objc_msgSend_181Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithFloat_1 = _registerName1("initWithFloat:"); ffi.Pointer _objc_msgSend_182( @@ -6034,24 +6036,24 @@ class PedometerBindings { return __objc_msgSend_182(obj, sel, value); } - late final __objc_msgSend_182Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Float, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_182 = - __objc_msgSend_182Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - double, - ) - >(); + late final __objc_msgSend_182Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Float, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_182 = __objc_msgSend_182Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + double, + ) + >(); late final _sel_initWithDouble_1 = _registerName1("initWithDouble:"); ffi.Pointer _objc_msgSend_183( @@ -6062,24 +6064,24 @@ class PedometerBindings { return __objc_msgSend_183(obj, sel, value); } - late final __objc_msgSend_183Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_183 = - __objc_msgSend_183Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - double, - ) - >(); + late final __objc_msgSend_183Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_183 = __objc_msgSend_183Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + double, + ) + >(); late final _sel_initWithBool_1 = _registerName1("initWithBool:"); ffi.Pointer _objc_msgSend_184( @@ -6090,24 +6092,24 @@ class PedometerBindings { return __objc_msgSend_184(obj, sel, value); } - late final __objc_msgSend_184Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_184 = - __objc_msgSend_184Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_184Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_184 = __objc_msgSend_184Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_initWithInteger_1 = _registerName1("initWithInteger:"); late final _sel_initWithUnsignedInteger_1 = _registerName1( @@ -6118,80 +6120,86 @@ class PedometerBindings { return __objc_msgSend_185(obj, sel); } - late final __objc_msgSend_185Ptr = _lookup< - ffi.NativeFunction< - ffi.Char Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_185 = - __objc_msgSend_185Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_185Ptr = + _lookup< + ffi.NativeFunction< + ffi.Char Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_185 = __objc_msgSend_185Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_unsignedCharValue1 = _registerName1("unsignedCharValue"); int _objc_msgSend_186(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_186(obj, sel); } - late final __objc_msgSend_186Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedChar Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_186 = - __objc_msgSend_186Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_186Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedChar Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_186 = __objc_msgSend_186Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_shortValue1 = _registerName1("shortValue"); int _objc_msgSend_187(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_187(obj, sel); } - late final __objc_msgSend_187Ptr = _lookup< - ffi.NativeFunction< - ffi.Short Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_187 = - __objc_msgSend_187Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_187Ptr = + _lookup< + ffi.NativeFunction< + ffi.Short Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_187 = __objc_msgSend_187Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_unsignedShortValue1 = _registerName1("unsignedShortValue"); int _objc_msgSend_188(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_188(obj, sel); } - late final __objc_msgSend_188Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedShort Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_188 = - __objc_msgSend_188Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_188Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedShort Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_188 = __objc_msgSend_188Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_intValue1 = _registerName1("intValue"); int _objc_msgSend_189(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_189(obj, sel); } - late final __objc_msgSend_189Ptr = _lookup< - ffi.NativeFunction< - ffi.Int Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_189 = - __objc_msgSend_189Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_189Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_189 = __objc_msgSend_189Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_unsignedIntValue1 = _registerName1("unsignedIntValue"); late final _sel_longValue1 = _registerName1("longValue"); @@ -6201,16 +6209,16 @@ class PedometerBindings { return __objc_msgSend_190(obj, sel); } - late final __objc_msgSend_190Ptr = _lookup< - ffi.NativeFunction< - ffi.LongLong Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_190 = - __objc_msgSend_190Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_190Ptr = + _lookup< + ffi.NativeFunction< + ffi.LongLong Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_190 = __objc_msgSend_190Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_unsignedLongLongValue1 = _registerName1( "unsignedLongLongValue", @@ -6223,16 +6231,16 @@ class PedometerBindings { return __objc_msgSend_191(obj, sel); } - late final __objc_msgSend_191Ptr = _lookup< - ffi.NativeFunction< - ffi.Float Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_191 = - __objc_msgSend_191Ptr - .asFunction< - double Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_191Ptr = + _lookup< + ffi.NativeFunction< + ffi.Float Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_191 = __objc_msgSend_191Ptr + .asFunction< + double Function(ffi.Pointer, ffi.Pointer) + >(); double _objc_msgSend_191_fpret( ffi.Pointer obj, @@ -6241,16 +6249,16 @@ class PedometerBindings { return __objc_msgSend_191_fpret(obj, sel); } - late final __objc_msgSend_191_fpretPtr = _lookup< - ffi.NativeFunction< - ffi.Float Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend_fpret'); - late final __objc_msgSend_191_fpret = - __objc_msgSend_191_fpretPtr - .asFunction< - double Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_191_fpretPtr = + _lookup< + ffi.NativeFunction< + ffi.Float Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend_fpret'); + late final __objc_msgSend_191_fpret = __objc_msgSend_191_fpretPtr + .asFunction< + double Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_doubleValue1 = _registerName1("doubleValue"); late final _sel_boolValue1 = _registerName1("boolValue"); @@ -6267,24 +6275,24 @@ class PedometerBindings { return __objc_msgSend_192(obj, sel, otherNumber); } - late final __objc_msgSend_192Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_192 = - __objc_msgSend_192Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_192Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_192 = __objc_msgSend_192Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isEqualToNumber_1 = _registerName1("isEqualToNumber:"); bool _objc_msgSend_193( @@ -6295,24 +6303,24 @@ class PedometerBindings { return __objc_msgSend_193(obj, sel, number); } - late final __objc_msgSend_193Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_193 = - __objc_msgSend_193Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_193Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_193 = __objc_msgSend_193Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_numberWithChar_1 = _registerName1("numberWithChar:"); late final _sel_numberWithUnsignedChar_1 = _registerName1( @@ -6362,26 +6370,26 @@ class PedometerBindings { return __objc_msgSend_194(obj, sel, buffer, maxBufferLength); } - late final __objc_msgSend_194Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_194 = - __objc_msgSend_194Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_194Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_194 = __objc_msgSend_194Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_fileSystemRepresentation1 = _registerName1( "fileSystemRepresentation", @@ -6404,28 +6412,28 @@ class PedometerBindings { return __objc_msgSend_195(obj, sel, value, key, error); } - late final __objc_msgSend_195Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_195 = - __objc_msgSend_195Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_195Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_195 = __objc_msgSend_195Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_resourceValuesForKeys_error_1 = _registerName1( "resourceValuesForKeys:error:", @@ -6439,26 +6447,26 @@ class PedometerBindings { return __objc_msgSend_196(obj, sel, keys, error); } - late final __objc_msgSend_196Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_196 = - __objc_msgSend_196Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_196Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_196 = __objc_msgSend_196Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_setResourceValue_forKey_error_1 = _registerName1( "setResourceValue:forKey:error:", @@ -6473,28 +6481,28 @@ class PedometerBindings { return __objc_msgSend_197(obj, sel, value, key, error); } - late final __objc_msgSend_197Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_197 = - __objc_msgSend_197Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_197Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_197 = __objc_msgSend_197Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_setResourceValues_error_1 = _registerName1( "setResourceValues:error:", @@ -6508,26 +6516,26 @@ class PedometerBindings { return __objc_msgSend_198(obj, sel, keyedValues, error); } - late final __objc_msgSend_198Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_198 = - __objc_msgSend_198Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_198Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_198 = __objc_msgSend_198Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_removeCachedResourceValueForKey_1 = _registerName1( "removeCachedResourceValueForKey:", @@ -6540,24 +6548,24 @@ class PedometerBindings { return __objc_msgSend_199(obj, sel, key); } - late final __objc_msgSend_199Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_199 = - __objc_msgSend_199Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_199Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_199 = __objc_msgSend_199Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeAllCachedResourceValues1 = _registerName1( "removeAllCachedResourceValues", @@ -6580,30 +6588,30 @@ class PedometerBindings { return __objc_msgSend_200(obj, sel, options, keys, relativeURL, error); } - late final __objc_msgSend_200Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_200 = - __objc_msgSend_200Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_200Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_200 = __objc_msgSend_200Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_1 = _registerName1( @@ -6629,32 +6637,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_201Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_201 = - __objc_msgSend_201Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_201Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_201 = __objc_msgSend_201Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_URLByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_1 = _registerName1( @@ -6672,26 +6680,26 @@ class PedometerBindings { return __objc_msgSend_202(obj, sel, keys, bookmarkData); } - late final __objc_msgSend_202Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_202 = - __objc_msgSend_202Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_202Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_202 = __objc_msgSend_202Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_writeBookmarkData_toURL_options_error_1 = _registerName1( "writeBookmarkData:toURL:options:error:", @@ -6714,30 +6722,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_203Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_203 = - __objc_msgSend_203Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_203Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_203 = __objc_msgSend_203Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_bookmarkDataWithContentsOfURL_error_1 = _registerName1( "bookmarkDataWithContentsOfURL:error:", @@ -6751,26 +6759,26 @@ class PedometerBindings { return __objc_msgSend_204(obj, sel, bookmarkFileURL, error); } - late final __objc_msgSend_204Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_204 = - __objc_msgSend_204Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_204Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_204 = __objc_msgSend_204Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_URLByResolvingAliasFileAtURL_options_error_1 = _registerName1( "URLByResolvingAliasFileAtURL:options:error:", @@ -6785,28 +6793,28 @@ class PedometerBindings { return __objc_msgSend_205(obj, sel, url, options, error); } - late final __objc_msgSend_205Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_205 = - __objc_msgSend_205Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_205Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_205 = __objc_msgSend_205Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_startAccessingSecurityScopedResource1 = _registerName1( "startAccessingSecurityScopedResource", @@ -6829,26 +6837,26 @@ class PedometerBindings { return __objc_msgSend_206(obj, sel, keys, error); } - late final __objc_msgSend_206Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_206 = - __objc_msgSend_206Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_206Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_206 = __objc_msgSend_206Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_checkPromisedItemIsReachableAndReturnError_1 = _registerName1( "checkPromisedItemIsReachableAndReturnError:", @@ -6861,24 +6869,24 @@ class PedometerBindings { return __objc_msgSend_207(obj, sel, error); } - late final __objc_msgSend_207Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_207 = - __objc_msgSend_207Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_207Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_207 = __objc_msgSend_207Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_fileURLWithPathComponents_1 = _registerName1( "fileURLWithPathComponents:", @@ -6891,24 +6899,24 @@ class PedometerBindings { return __objc_msgSend_208(obj, sel, components); } - late final __objc_msgSend_208Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_208 = - __objc_msgSend_208Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_208Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_208 = __objc_msgSend_208Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pathComponents1 = _registerName1("pathComponents"); late final _sel_lastPathComponent1 = _registerName1("lastPathComponent"); @@ -6924,24 +6932,24 @@ class PedometerBindings { return __objc_msgSend_209(obj, sel, pathComponent); } - late final __objc_msgSend_209Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_209 = - __objc_msgSend_209Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_209Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_209 = __objc_msgSend_209Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLByAppendingPathComponent_isDirectory_1 = _registerName1( "URLByAppendingPathComponent:isDirectory:", @@ -6955,26 +6963,26 @@ class PedometerBindings { return __objc_msgSend_210(obj, sel, pathComponent, isDirectory); } - late final __objc_msgSend_210Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_210 = - __objc_msgSend_210Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_210Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_210 = __objc_msgSend_210Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_URLByDeletingLastPathComponent1 = _registerName1( "URLByDeletingLastPathComponent", @@ -7005,24 +7013,24 @@ class PedometerBindings { return __objc_msgSend_211(obj, sel, shouldUseCache); } - late final __objc_msgSend_211Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_211 = - __objc_msgSend_211Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_211Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_211 = __objc_msgSend_211Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_loadResourceDataNotifyingClient_usingCache_1 = _registerName1( "loadResourceDataNotifyingClient:usingCache:", @@ -7036,26 +7044,26 @@ class PedometerBindings { return __objc_msgSend_212(obj, sel, client, shouldUseCache); } - late final __objc_msgSend_212Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_212 = - __objc_msgSend_212Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_212Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_212 = __objc_msgSend_212Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_propertyForKey_1 = _registerName1("propertyForKey:"); late final _sel_setResourceData_1 = _registerName1("setResourceData:"); @@ -7069,26 +7077,26 @@ class PedometerBindings { return __objc_msgSend_213(obj, sel, property, propertyKey); } - late final __objc_msgSend_213Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_213 = - __objc_msgSend_213Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_213Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_213 = __objc_msgSend_213Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLHandleUsingCache_1 = _registerName1( "URLHandleUsingCache:", @@ -7101,24 +7109,24 @@ class PedometerBindings { return __objc_msgSend_214(obj, sel, shouldUseCache); } - late final __objc_msgSend_214Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_214 = - __objc_msgSend_214Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_214Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_214 = __objc_msgSend_214Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_writeToFile_options_error_1 = _registerName1( "writeToFile:options:error:", @@ -7133,28 +7141,28 @@ class PedometerBindings { return __objc_msgSend_215(obj, sel, path, writeOptionsMask, errorPtr); } - late final __objc_msgSend_215Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_215 = - __objc_msgSend_215Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_215Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_215 = __objc_msgSend_215Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_writeToURL_options_error_1 = _registerName1( "writeToURL:options:error:", @@ -7169,28 +7177,28 @@ class PedometerBindings { return __objc_msgSend_216(obj, sel, url, writeOptionsMask, errorPtr); } - late final __objc_msgSend_216Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_216 = - __objc_msgSend_216Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_216Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_216 = __objc_msgSend_216Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_rangeOfData_options_range_1 = _registerName1( "rangeOfData:options:range:", @@ -7205,28 +7213,28 @@ class PedometerBindings { return __objc_msgSend_217(obj, sel, dataToFind, mask, searchRange); } - late final __objc_msgSend_217Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_217 = - __objc_msgSend_217Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_217Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_217 = __objc_msgSend_217Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); void _objc_msgSend_217_stret( ffi.Pointer<_NSRange> stret, @@ -7246,30 +7254,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_217_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_217_stret = - __objc_msgSend_217_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_217_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_217_stret = __objc_msgSend_217_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_enumerateByteRangesUsingBlock_1 = _registerName1( "enumerateByteRangesUsingBlock:", @@ -7282,24 +7290,24 @@ class PedometerBindings { return __objc_msgSend_218(obj, sel, block); } - late final __objc_msgSend_218Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_218 = - __objc_msgSend_218Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_218Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_218 = __objc_msgSend_218Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_data1 = _registerName1("data"); late final _sel_dataWithBytes_length_1 = _registerName1( @@ -7314,26 +7322,26 @@ class PedometerBindings { return __objc_msgSend_219(obj, sel, bytes, length); } - late final __objc_msgSend_219Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_219 = - __objc_msgSend_219Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_219Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_219 = __objc_msgSend_219Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_dataWithBytesNoCopy_length_1 = _registerName1( "dataWithBytesNoCopy:length:", @@ -7351,28 +7359,28 @@ class PedometerBindings { return __objc_msgSend_220(obj, sel, bytes, length, b); } - late final __objc_msgSend_220Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_220 = - __objc_msgSend_220Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - bool, - ) - >(); + late final __objc_msgSend_220Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_220 = __objc_msgSend_220Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + bool, + ) + >(); late final _sel_dataWithContentsOfFile_options_error_1 = _registerName1( "dataWithContentsOfFile:options:error:", @@ -7387,28 +7395,28 @@ class PedometerBindings { return __objc_msgSend_221(obj, sel, path, readOptionsMask, errorPtr); } - late final __objc_msgSend_221Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_221 = - __objc_msgSend_221Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_221Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_221 = __objc_msgSend_221Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_dataWithContentsOfURL_options_error_1 = _registerName1( "dataWithContentsOfURL:options:error:", @@ -7423,28 +7431,28 @@ class PedometerBindings { return __objc_msgSend_222(obj, sel, url, readOptionsMask, errorPtr); } - late final __objc_msgSend_222Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_222 = - __objc_msgSend_222Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_222Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_222 = __objc_msgSend_222Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_dataWithContentsOfFile_1 = _registerName1( "dataWithContentsOfFile:", @@ -7460,24 +7468,24 @@ class PedometerBindings { return __objc_msgSend_223(obj, sel, url); } - late final __objc_msgSend_223Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_223 = - __objc_msgSend_223Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_223Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_223 = __objc_msgSend_223Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithBytes_length_1 = _registerName1( "initWithBytes:length:", @@ -7501,28 +7509,28 @@ class PedometerBindings { return __objc_msgSend_224(obj, sel, bytes, length, deallocator); } - late final __objc_msgSend_224Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_224 = - __objc_msgSend_224Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_224Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_224 = __objc_msgSend_224Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_initWithContentsOfFile_options_error_1 = _registerName1( "initWithContentsOfFile:options:error:", @@ -7539,24 +7547,24 @@ class PedometerBindings { return __objc_msgSend_225(obj, sel, data); } - late final __objc_msgSend_225Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_225 = - __objc_msgSend_225Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_225Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_225 = __objc_msgSend_225Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dataWithData_1 = _registerName1("dataWithData:"); late final _sel_initWithBase64EncodedString_options_1 = _registerName1( @@ -7571,26 +7579,26 @@ class PedometerBindings { return __objc_msgSend_226(obj, sel, base64String, options); } - late final __objc_msgSend_226Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_226 = - __objc_msgSend_226Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_226Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_226 = __objc_msgSend_226Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_base64EncodedStringWithOptions_1 = _registerName1( "base64EncodedStringWithOptions:", @@ -7603,24 +7611,24 @@ class PedometerBindings { return __objc_msgSend_227(obj, sel, options); } - late final __objc_msgSend_227Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_227 = - __objc_msgSend_227Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_227Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_227 = __objc_msgSend_227Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithBase64EncodedData_options_1 = _registerName1( "initWithBase64EncodedData:options:", @@ -7634,26 +7642,26 @@ class PedometerBindings { return __objc_msgSend_228(obj, sel, base64Data, options); } - late final __objc_msgSend_228Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_228 = - __objc_msgSend_228Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_228Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_228 = __objc_msgSend_228Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_base64EncodedDataWithOptions_1 = _registerName1( "base64EncodedDataWithOptions:", @@ -7666,24 +7674,24 @@ class PedometerBindings { return __objc_msgSend_229(obj, sel, options); } - late final __objc_msgSend_229Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_229 = - __objc_msgSend_229Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_229Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_229 = __objc_msgSend_229Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_decompressedDataUsingAlgorithm_error_1 = _registerName1( "decompressedDataUsingAlgorithm:error:", @@ -7697,26 +7705,26 @@ class PedometerBindings { return __objc_msgSend_230(obj, sel, algorithm, error); } - late final __objc_msgSend_230Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_230 = - __objc_msgSend_230Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_230Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_230 = __objc_msgSend_230Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_compressedDataUsingAlgorithm_error_1 = _registerName1( "compressedDataUsingAlgorithm:error:", @@ -7741,24 +7749,24 @@ class PedometerBindings { return __objc_msgSend_231(obj, sel, data); } - late final __objc_msgSend_231Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_231 = - __objc_msgSend_231Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_231Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_231 = __objc_msgSend_231Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeDataObject1 = _registerName1("decodeDataObject"); ffi.Pointer _objc_msgSend_232( @@ -7768,22 +7776,22 @@ class PedometerBindings { return __objc_msgSend_232(obj, sel); } - late final __objc_msgSend_232Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_232 = - __objc_msgSend_232Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_232Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_232 = __objc_msgSend_232Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeValueOfObjCType_at_size_1 = _registerName1( "decodeValueOfObjCType:at:size:", @@ -7798,28 +7806,28 @@ class PedometerBindings { return __objc_msgSend_233(obj, sel, type, data, size); } - late final __objc_msgSend_233Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_233 = - __objc_msgSend_233Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_233Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_233 = __objc_msgSend_233Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_versionForClassName_1 = _registerName1( "versionForClassName:", @@ -7832,24 +7840,24 @@ class PedometerBindings { return __objc_msgSend_234(obj, sel, className); } - late final __objc_msgSend_234Ptr = _lookup< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_234 = - __objc_msgSend_234Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_234Ptr = + _lookup< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_234 = __objc_msgSend_234Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_encodeObject_1 = _registerName1("encodeObject:"); void _objc_msgSend_235( @@ -7860,24 +7868,24 @@ class PedometerBindings { return __objc_msgSend_235(obj, sel, object); } - late final __objc_msgSend_235Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_235 = - __objc_msgSend_235Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_235Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_235 = __objc_msgSend_235Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_encodeRootObject_1 = _registerName1("encodeRootObject:"); late final _sel_encodeBycopyObject_1 = _registerName1("encodeBycopyObject:"); @@ -7896,24 +7904,24 @@ class PedometerBindings { return __objc_msgSend_236(obj, sel, types); } - late final __objc_msgSend_236Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_236 = - __objc_msgSend_236Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_236Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_236 = __objc_msgSend_236Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_encodeArrayOfObjCType_count_at_1 = _registerName1( "encodeArrayOfObjCType:count:at:", @@ -7928,28 +7936,28 @@ class PedometerBindings { return __objc_msgSend_237(obj, sel, type, count, array); } - late final __objc_msgSend_237Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_237 = - __objc_msgSend_237Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_237Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_237 = __objc_msgSend_237Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_encodeBytes_length_1 = _registerName1("encodeBytes:length:"); late final _sel_decodeObject1 = _registerName1("decodeObject"); @@ -7964,24 +7972,24 @@ class PedometerBindings { return __objc_msgSend_238(obj, sel, error); } - late final __objc_msgSend_238Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_238 = - __objc_msgSend_238Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_238Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_238 = __objc_msgSend_238Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_decodeValuesOfObjCTypes_1 = _registerName1( "decodeValuesOfObjCTypes:", @@ -8000,24 +8008,24 @@ class PedometerBindings { return __objc_msgSend_239(obj, sel, lengthp); } - late final __objc_msgSend_239Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_239 = - __objc_msgSend_239Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_239Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_239 = __objc_msgSend_239Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_encodePropertyList_1 = _registerName1("encodePropertyList:"); late final _sel_decodePropertyList1 = _registerName1("decodePropertyList"); @@ -8030,24 +8038,24 @@ class PedometerBindings { return __objc_msgSend_240(obj, sel, zone); } - late final __objc_msgSend_240Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_NSZone>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_240 = - __objc_msgSend_240Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_NSZone>, - ) - >(); + late final __objc_msgSend_240Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_NSZone>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_240 = __objc_msgSend_240Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_NSZone>, + ) + >(); late final _sel_objectZone1 = _registerName1("objectZone"); ffi.Pointer<_NSZone> _objc_msgSend_241( @@ -8057,22 +8065,22 @@ class PedometerBindings { return __objc_msgSend_241(obj, sel); } - late final __objc_msgSend_241Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<_NSZone> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_241 = - __objc_msgSend_241Ptr - .asFunction< - ffi.Pointer<_NSZone> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_241Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<_NSZone> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_241 = __objc_msgSend_241Ptr + .asFunction< + ffi.Pointer<_NSZone> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_systemVersion1 = _registerName1("systemVersion"); late final _sel_allowsKeyedCoding1 = _registerName1("allowsKeyedCoding"); @@ -8092,26 +8100,26 @@ class PedometerBindings { return __objc_msgSend_242(obj, sel, value, key); } - late final __objc_msgSend_242Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_242 = - __objc_msgSend_242Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_242Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_242 = __objc_msgSend_242Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_encodeInt_forKey_1 = _registerName1("encodeInt:forKey:"); void _objc_msgSend_243( @@ -8123,26 +8131,26 @@ class PedometerBindings { return __objc_msgSend_243(obj, sel, value, key); } - late final __objc_msgSend_243Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_243 = - __objc_msgSend_243Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_243Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_243 = __objc_msgSend_243Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_encodeInt32_forKey_1 = _registerName1("encodeInt32:forKey:"); void _objc_msgSend_244( @@ -8154,26 +8162,26 @@ class PedometerBindings { return __objc_msgSend_244(obj, sel, value, key); } - late final __objc_msgSend_244Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_244 = - __objc_msgSend_244Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_244Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_244 = __objc_msgSend_244Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_encodeInt64_forKey_1 = _registerName1("encodeInt64:forKey:"); void _objc_msgSend_245( @@ -8185,26 +8193,26 @@ class PedometerBindings { return __objc_msgSend_245(obj, sel, value, key); } - late final __objc_msgSend_245Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_245 = - __objc_msgSend_245Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_245Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_245 = __objc_msgSend_245Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_encodeFloat_forKey_1 = _registerName1("encodeFloat:forKey:"); void _objc_msgSend_246( @@ -8216,26 +8224,26 @@ class PedometerBindings { return __objc_msgSend_246(obj, sel, value, key); } - late final __objc_msgSend_246Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Float, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_246 = - __objc_msgSend_246Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_246Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Float, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_246 = __objc_msgSend_246Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ) + >(); late final _sel_encodeDouble_forKey_1 = _registerName1( "encodeDouble:forKey:", @@ -8249,26 +8257,26 @@ class PedometerBindings { return __objc_msgSend_247(obj, sel, value, key); } - late final __objc_msgSend_247Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_247 = - __objc_msgSend_247Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_247Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_247 = __objc_msgSend_247Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ) + >(); late final _sel_encodeBytes_length_forKey_1 = _registerName1( "encodeBytes:length:forKey:", @@ -8283,28 +8291,28 @@ class PedometerBindings { return __objc_msgSend_248(obj, sel, bytes, length, key); } - late final __objc_msgSend_248Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_248 = - __objc_msgSend_248Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_248Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_248 = __objc_msgSend_248Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_containsValueForKey_1 = _registerName1( "containsValueForKey:", @@ -8322,26 +8330,26 @@ class PedometerBindings { return __objc_msgSend_249(obj, sel, key, error); } - late final __objc_msgSend_249Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_249 = - __objc_msgSend_249Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_249Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_249 = __objc_msgSend_249Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_decodeBoolForKey_1 = _registerName1("decodeBoolForKey:"); late final _sel_decodeIntForKey_1 = _registerName1("decodeIntForKey:"); @@ -8353,24 +8361,24 @@ class PedometerBindings { return __objc_msgSend_250(obj, sel, key); } - late final __objc_msgSend_250Ptr = _lookup< - ffi.NativeFunction< - ffi.Int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_250 = - __objc_msgSend_250Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_250Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_250 = __objc_msgSend_250Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeInt32ForKey_1 = _registerName1("decodeInt32ForKey:"); int _objc_msgSend_251( @@ -8381,24 +8389,24 @@ class PedometerBindings { return __objc_msgSend_251(obj, sel, key); } - late final __objc_msgSend_251Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_251 = - __objc_msgSend_251Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_251Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_251 = __objc_msgSend_251Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeInt64ForKey_1 = _registerName1("decodeInt64ForKey:"); int _objc_msgSend_252( @@ -8409,24 +8417,24 @@ class PedometerBindings { return __objc_msgSend_252(obj, sel, key); } - late final __objc_msgSend_252Ptr = _lookup< - ffi.NativeFunction< - ffi.Int64 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_252 = - __objc_msgSend_252Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_252Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int64 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_252 = __objc_msgSend_252Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeFloatForKey_1 = _registerName1("decodeFloatForKey:"); double _objc_msgSend_253( @@ -8437,24 +8445,24 @@ class PedometerBindings { return __objc_msgSend_253(obj, sel, key); } - late final __objc_msgSend_253Ptr = _lookup< - ffi.NativeFunction< - ffi.Float Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_253 = - __objc_msgSend_253Ptr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_253Ptr = + _lookup< + ffi.NativeFunction< + ffi.Float Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_253 = __objc_msgSend_253Ptr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); double _objc_msgSend_253_fpret( ffi.Pointer obj, @@ -8464,24 +8472,24 @@ class PedometerBindings { return __objc_msgSend_253_fpret(obj, sel, key); } - late final __objc_msgSend_253_fpretPtr = _lookup< - ffi.NativeFunction< - ffi.Float Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_fpret'); - late final __objc_msgSend_253_fpret = - __objc_msgSend_253_fpretPtr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_253_fpretPtr = + _lookup< + ffi.NativeFunction< + ffi.Float Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_fpret'); + late final __objc_msgSend_253_fpret = __objc_msgSend_253_fpretPtr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeDoubleForKey_1 = _registerName1("decodeDoubleForKey:"); double _objc_msgSend_254( @@ -8492,24 +8500,24 @@ class PedometerBindings { return __objc_msgSend_254(obj, sel, key); } - late final __objc_msgSend_254Ptr = _lookup< - ffi.NativeFunction< - ffi.Double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_254 = - __objc_msgSend_254Ptr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_254Ptr = + _lookup< + ffi.NativeFunction< + ffi.Double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_254 = __objc_msgSend_254Ptr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); double _objc_msgSend_254_fpret( ffi.Pointer obj, @@ -8519,24 +8527,24 @@ class PedometerBindings { return __objc_msgSend_254_fpret(obj, sel, key); } - late final __objc_msgSend_254_fpretPtr = _lookup< - ffi.NativeFunction< - ffi.Double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_fpret'); - late final __objc_msgSend_254_fpret = - __objc_msgSend_254_fpretPtr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_254_fpretPtr = + _lookup< + ffi.NativeFunction< + ffi.Double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_fpret'); + late final __objc_msgSend_254_fpret = __objc_msgSend_254_fpretPtr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeBytesForKey_returnedLength_1 = _registerName1( "decodeBytesForKey:returnedLength:", @@ -8550,26 +8558,26 @@ class PedometerBindings { return __objc_msgSend_255(obj, sel, key, lengthp); } - late final __objc_msgSend_255Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_255 = - __objc_msgSend_255Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_255Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_255 = __objc_msgSend_255Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_encodeInteger_forKey_1 = _registerName1( "encodeInteger:forKey:", @@ -8583,26 +8591,26 @@ class PedometerBindings { return __objc_msgSend_256(obj, sel, value, key); } - late final __objc_msgSend_256Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_256 = - __objc_msgSend_256Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_256Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_256 = __objc_msgSend_256Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_decodeIntegerForKey_1 = _registerName1( "decodeIntegerForKey:", @@ -8622,26 +8630,26 @@ class PedometerBindings { return __objc_msgSend_257(obj, sel, aClass, key); } - late final __objc_msgSend_257Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_257 = - __objc_msgSend_257Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_257Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_257 = __objc_msgSend_257Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeTopLevelObjectOfClass_forKey_error_1 = _registerName1( "decodeTopLevelObjectOfClass:forKey:error:", @@ -8656,28 +8664,28 @@ class PedometerBindings { return __objc_msgSend_258(obj, sel, aClass, key, error); } - late final __objc_msgSend_258Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_258 = - __objc_msgSend_258Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_258Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_258 = __objc_msgSend_258Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_decodeArrayOfObjectsOfClass_forKey_1 = _registerName1( "decodeArrayOfObjectsOfClass:forKey:", @@ -8691,26 +8699,26 @@ class PedometerBindings { return __objc_msgSend_259(obj, sel, cls, key); } - late final __objc_msgSend_259Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_259 = - __objc_msgSend_259Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_259Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_259 = __objc_msgSend_259Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeDictionaryWithKeysOfClass_objectsOfClass_forKey_1 = _registerName1("decodeDictionaryWithKeysOfClass:objectsOfClass:forKey:"); @@ -8724,28 +8732,28 @@ class PedometerBindings { return __objc_msgSend_260(obj, sel, keyCls, objectCls, key); } - late final __objc_msgSend_260Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_260 = - __objc_msgSend_260Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_260Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_260 = __objc_msgSend_260Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeObjectOfClasses_forKey_1 = _registerName1( "decodeObjectOfClasses:forKey:", @@ -8759,26 +8767,26 @@ class PedometerBindings { return __objc_msgSend_261(obj, sel, classes, key); } - late final __objc_msgSend_261Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_261 = - __objc_msgSend_261Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_261Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_261 = __objc_msgSend_261Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeTopLevelObjectOfClasses_forKey_error_1 = _registerName1( "decodeTopLevelObjectOfClasses:forKey:error:", @@ -8793,28 +8801,28 @@ class PedometerBindings { return __objc_msgSend_262(obj, sel, classes, key, error); } - late final __objc_msgSend_262Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_262 = - __objc_msgSend_262Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_262Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_262 = __objc_msgSend_262Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_decodeArrayOfObjectsOfClasses_forKey_1 = _registerName1( "decodeArrayOfObjectsOfClasses:forKey:", @@ -8828,26 +8836,26 @@ class PedometerBindings { return __objc_msgSend_263(obj, sel, classes, key); } - late final __objc_msgSend_263Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_263 = - __objc_msgSend_263Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_263Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_263 = __objc_msgSend_263Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodeDictionaryWithKeysOfClasses_objectsOfClasses_forKey_1 = _registerName1( @@ -8863,28 +8871,28 @@ class PedometerBindings { return __objc_msgSend_264(obj, sel, keyClasses, objectClasses, key); } - late final __objc_msgSend_264Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_264 = - __objc_msgSend_264Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_264Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_264 = __objc_msgSend_264Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodePropertyListForKey_1 = _registerName1( "decodePropertyListForKey:", @@ -8897,22 +8905,22 @@ class PedometerBindings { return __objc_msgSend_265(obj, sel); } - late final __objc_msgSend_265Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_265 = - __objc_msgSend_265Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_265Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_265 = __objc_msgSend_265Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_failWithError_1 = _registerName1("failWithError:"); void _objc_msgSend_266( @@ -8923,24 +8931,24 @@ class PedometerBindings { return __objc_msgSend_266(obj, sel, error); } - late final __objc_msgSend_266Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_266 = - __objc_msgSend_266Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_266Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_266 = __objc_msgSend_266Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_decodingFailurePolicy1 = _registerName1( "decodingFailurePolicy", @@ -8949,16 +8957,16 @@ class PedometerBindings { return __objc_msgSend_267(obj, sel); } - late final __objc_msgSend_267Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_267 = - __objc_msgSend_267Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_267Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_267 = __objc_msgSend_267Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_error1 = _registerName1("error"); ffi.Pointer _objc_msgSend_268( @@ -8968,22 +8976,22 @@ class PedometerBindings { return __objc_msgSend_268(obj, sel); } - late final __objc_msgSend_268Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_268 = - __objc_msgSend_268Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_268Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_268 = __objc_msgSend_268Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_encodeNXObject_1 = _registerName1("encodeNXObject:"); late final _sel_decodeNXObject1 = _registerName1("decodeNXObject"); @@ -8999,24 +9007,24 @@ class PedometerBindings { return __objc_msgSend_269(obj, sel, from); } - late final __objc_msgSend_269Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_269 = - __objc_msgSend_269Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_269Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_269 = __objc_msgSend_269Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_substringToIndex_1 = _registerName1("substringToIndex:"); late final _sel_substringWithRange_1 = _registerName1("substringWithRange:"); @@ -9028,24 +9036,24 @@ class PedometerBindings { return __objc_msgSend_270(obj, sel, range); } - late final __objc_msgSend_270Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_270 = - __objc_msgSend_270Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_270Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_270 = __objc_msgSend_270Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_getCharacters_range_1 = _registerName1( "getCharacters:range:", @@ -9059,53 +9067,53 @@ class PedometerBindings { return __objc_msgSend_271(obj, sel, buffer, range); } - late final __objc_msgSend_271Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_271 = - __objc_msgSend_271Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); - - int _objc_msgSend_272( - ffi.Pointer obj, - ffi.Pointer sel, + late final __objc_msgSend_271Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_271 = __objc_msgSend_271Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); + + int _objc_msgSend_272( + ffi.Pointer obj, + ffi.Pointer sel, ffi.Pointer string, ) { return __objc_msgSend_272(obj, sel, string); } - late final __objc_msgSend_272Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_272 = - __objc_msgSend_272Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_272Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_272 = __objc_msgSend_272Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_compare_options_1 = _registerName1("compare:options:"); int _objc_msgSend_273( @@ -9117,26 +9125,26 @@ class PedometerBindings { return __objc_msgSend_273(obj, sel, string, mask); } - late final __objc_msgSend_273Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_273 = - __objc_msgSend_273Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_273Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_273 = __objc_msgSend_273Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_compare_options_range_1 = _registerName1( "compare:options:range:", @@ -9151,28 +9159,28 @@ class PedometerBindings { return __objc_msgSend_274(obj, sel, string, mask, rangeOfReceiverToCompare); } - late final __objc_msgSend_274Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_274 = - __objc_msgSend_274Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_274Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_274 = __objc_msgSend_274Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_compare_options_range_locale_1 = _registerName1( "compare:options:range:locale:", @@ -9195,30 +9203,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_275Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_275 = - __objc_msgSend_275Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_275Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_275 = __objc_msgSend_275Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_caseInsensitiveCompare_1 = _registerName1( "caseInsensitiveCompare:", @@ -9245,26 +9253,26 @@ class PedometerBindings { return __objc_msgSend_276(obj, sel, str, mask); } - late final __objc_msgSend_276Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_276 = - __objc_msgSend_276Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_276Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_276 = __objc_msgSend_276Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_containsString_1 = _registerName1("containsString:"); late final _sel_localizedCaseInsensitiveContainsString_1 = _registerName1( @@ -9284,24 +9292,24 @@ class PedometerBindings { return __objc_msgSend_277(obj, sel, str); } - late final __objc_msgSend_277Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_277 = - __objc_msgSend_277Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_277Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_277 = __objc_msgSend_277Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_277_stret( ffi.Pointer<_NSRange> stret, @@ -9312,26 +9320,26 @@ class PedometerBindings { return __objc_msgSend_277_stret(stret, obj, sel, str); } - late final __objc_msgSend_277_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_277_stret = - __objc_msgSend_277_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_277_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_277_stret = __objc_msgSend_277_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_rangeOfString_1 = _registerName1("rangeOfString:"); late final _sel_rangeOfString_options_1 = _registerName1( @@ -9346,26 +9354,26 @@ class PedometerBindings { return __objc_msgSend_278(obj, sel, searchString, mask); } - late final __objc_msgSend_278Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_278 = - __objc_msgSend_278Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_278Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_278 = __objc_msgSend_278Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); void _objc_msgSend_278_stret( ffi.Pointer<_NSRange> stret, @@ -9377,28 +9385,28 @@ class PedometerBindings { return __objc_msgSend_278_stret(stret, obj, sel, searchString, mask); } - late final __objc_msgSend_278_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_278_stret = - __objc_msgSend_278_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_278_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_278_stret = __objc_msgSend_278_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_rangeOfString_options_range_1 = _registerName1( "rangeOfString:options:range:", @@ -9419,28 +9427,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_279Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_279 = - __objc_msgSend_279Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_279Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_279 = __objc_msgSend_279Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); void _objc_msgSend_279_stret( ffi.Pointer<_NSRange> stret, @@ -9460,30 +9468,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_279_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_279_stret = - __objc_msgSend_279_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_279_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_279_stret = __objc_msgSend_279_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _class_NSLocale1 = _getClass1("NSLocale"); late final _sel_displayNameForKey_value_1 = _registerName1( @@ -9498,26 +9506,26 @@ class PedometerBindings { return __objc_msgSend_280(obj, sel, key, value); } - late final __objc_msgSend_280Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_280 = - __objc_msgSend_280Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_280Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_280 = __objc_msgSend_280Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithLocaleIdentifier_1 = _registerName1( "initWithLocaleIdentifier:", @@ -9538,24 +9546,24 @@ class PedometerBindings { return __objc_msgSend_281(obj, sel, languageCode); } - late final __objc_msgSend_281Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_281 = - __objc_msgSend_281Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_281Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_281 = __objc_msgSend_281Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_languageIdentifier1 = _registerName1("languageIdentifier"); late final _sel_countryCode1 = _registerName1("countryCode"); @@ -9580,22 +9588,22 @@ class PedometerBindings { return __objc_msgSend_282(obj, sel); } - late final __objc_msgSend_282Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_282 = - __objc_msgSend_282Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_282Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_282 = __objc_msgSend_282Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_whitespaceCharacterSet1 = _registerName1( "whitespaceCharacterSet", @@ -9640,24 +9648,24 @@ class PedometerBindings { return __objc_msgSend_283(obj, sel, aRange); } - late final __objc_msgSend_283Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_283 = - __objc_msgSend_283Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_283Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_283 = __objc_msgSend_283Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_characterSetWithCharactersInString_1 = _registerName1( "characterSetWithCharactersInString:", @@ -9670,24 +9678,24 @@ class PedometerBindings { return __objc_msgSend_284(obj, sel, aString); } - late final __objc_msgSend_284Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_284 = - __objc_msgSend_284Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_284Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_284 = __objc_msgSend_284Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_characterSetWithBitmapRepresentation_1 = _registerName1( "characterSetWithBitmapRepresentation:", @@ -9700,24 +9708,24 @@ class PedometerBindings { return __objc_msgSend_285(obj, sel, data); } - late final __objc_msgSend_285Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_285 = - __objc_msgSend_285Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_285Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_285 = __objc_msgSend_285Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_characterSetWithContentsOfFile_1 = _registerName1( "characterSetWithContentsOfFile:", @@ -9730,24 +9738,24 @@ class PedometerBindings { return __objc_msgSend_286(obj, sel, fName); } - late final __objc_msgSend_286Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_286 = - __objc_msgSend_286Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_286Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_286 = __objc_msgSend_286Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); instancetype _objc_msgSend_287( ffi.Pointer obj, @@ -9757,24 +9765,24 @@ class PedometerBindings { return __objc_msgSend_287(obj, sel, coder); } - late final __objc_msgSend_287Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_287 = - __objc_msgSend_287Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_287Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_287 = __objc_msgSend_287Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_characterIsMember_1 = _registerName1("characterIsMember:"); bool _objc_msgSend_288( @@ -9785,20 +9793,20 @@ class PedometerBindings { return __objc_msgSend_288(obj, sel, aCharacter); } - late final __objc_msgSend_288Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedShort, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_288 = - __objc_msgSend_288Ptr - .asFunction< - bool Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_288Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedShort, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_288 = __objc_msgSend_288Ptr + .asFunction< + bool Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_bitmapRepresentation1 = _registerName1( "bitmapRepresentation", @@ -9815,20 +9823,20 @@ class PedometerBindings { return __objc_msgSend_289(obj, sel, theLongChar); } - late final __objc_msgSend_289Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedInt, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_289 = - __objc_msgSend_289Ptr - .asFunction< - bool Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_289Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedInt, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_289 = __objc_msgSend_289Ptr + .asFunction< + bool Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_isSupersetOfSet_1 = _registerName1("isSupersetOfSet:"); bool _objc_msgSend_290( @@ -9839,24 +9847,24 @@ class PedometerBindings { return __objc_msgSend_290(obj, sel, theOtherSet); } - late final __objc_msgSend_290Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_290 = - __objc_msgSend_290Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_290Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_290 = __objc_msgSend_290Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_hasMemberInPlane_1 = _registerName1("hasMemberInPlane:"); bool _objc_msgSend_291( @@ -9867,20 +9875,20 @@ class PedometerBindings { return __objc_msgSend_291(obj, sel, thePlane); } - late final __objc_msgSend_291Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Uint8, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_291 = - __objc_msgSend_291Ptr - .asFunction< - bool Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_291Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Uint8, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_291 = __objc_msgSend_291Ptr + .asFunction< + bool Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_URLUserAllowedCharacterSet1 = _registerName1( "URLUserAllowedCharacterSet", @@ -9945,22 +9953,22 @@ class PedometerBindings { return __objc_msgSend_292(obj, sel); } - late final __objc_msgSend_292Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_292 = - __objc_msgSend_292Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_292Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_292 = __objc_msgSend_292Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_currentLocale1 = _registerName1("currentLocale"); late final _sel_systemLocale1 = _registerName1("systemLocale"); @@ -9988,24 +9996,24 @@ class PedometerBindings { return __objc_msgSend_293(obj, sel, string); } - late final __objc_msgSend_293Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_293 = - __objc_msgSend_293Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_293Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_293 = __objc_msgSend_293Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localeIdentifierFromComponents_1 = _registerName1( "localeIdentifierFromComponents:", @@ -10018,24 +10026,24 @@ class PedometerBindings { return __objc_msgSend_294(obj, sel, dict); } - late final __objc_msgSend_294Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_294 = - __objc_msgSend_294Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_294Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_294 = __objc_msgSend_294Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_canonicalLocaleIdentifierFromString_1 = _registerName1( "canonicalLocaleIdentifierFromString:", @@ -10054,24 +10062,24 @@ class PedometerBindings { return __objc_msgSend_295(obj, sel, lcid); } - late final __objc_msgSend_295Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Uint32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_295 = - __objc_msgSend_295Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_295Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Uint32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_295 = __objc_msgSend_295Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_windowsLocaleCodeFromLocaleIdentifier_1 = _registerName1( "windowsLocaleCodeFromLocaleIdentifier:", @@ -10084,27 +10092,27 @@ class PedometerBindings { return __objc_msgSend_296(obj, sel, localeIdentifier); } - late final __objc_msgSend_296Ptr = _lookup< - ffi.NativeFunction< - ffi.Uint32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_296 = - __objc_msgSend_296Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); - - late final _sel_characterDirectionForLanguage_1 = _registerName1( - "characterDirectionForLanguage:", + late final __objc_msgSend_296Ptr = + _lookup< + ffi.NativeFunction< + ffi.Uint32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_296 = __objc_msgSend_296Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); + + late final _sel_characterDirectionForLanguage_1 = _registerName1( + "characterDirectionForLanguage:", ); int _objc_msgSend_297( ffi.Pointer obj, @@ -10114,24 +10122,24 @@ class PedometerBindings { return __objc_msgSend_297(obj, sel, isoLangCode); } - late final __objc_msgSend_297Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_297 = - __objc_msgSend_297Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_297Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_297 = __objc_msgSend_297Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_lineDirectionForLanguage_1 = _registerName1( "lineDirectionForLanguage:", @@ -10157,30 +10165,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_298Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_298 = - __objc_msgSend_298Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_298Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_298 = __objc_msgSend_298Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer, + ) + >(); void _objc_msgSend_298_stret( ffi.Pointer<_NSRange> stret, @@ -10202,32 +10210,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_298_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_298_stret = - __objc_msgSend_298_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_298_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_298_stret = __objc_msgSend_298_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_rangeOfCharacterFromSet_1 = _registerName1( "rangeOfCharacterFromSet:", @@ -10240,24 +10248,24 @@ class PedometerBindings { return __objc_msgSend_299(obj, sel, searchSet); } - late final __objc_msgSend_299Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_299 = - __objc_msgSend_299Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_299Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_299 = __objc_msgSend_299Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_299_stret( ffi.Pointer<_NSRange> stret, @@ -10268,26 +10276,26 @@ class PedometerBindings { return __objc_msgSend_299_stret(stret, obj, sel, searchSet); } - late final __objc_msgSend_299_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_299_stret = - __objc_msgSend_299_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_299_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_299_stret = __objc_msgSend_299_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_rangeOfCharacterFromSet_options_1 = _registerName1( "rangeOfCharacterFromSet:options:", @@ -10301,26 +10309,26 @@ class PedometerBindings { return __objc_msgSend_300(obj, sel, searchSet, mask); } - late final __objc_msgSend_300Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_300 = - __objc_msgSend_300Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_300Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_300 = __objc_msgSend_300Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); void _objc_msgSend_300_stret( ffi.Pointer<_NSRange> stret, @@ -10332,28 +10340,28 @@ class PedometerBindings { return __objc_msgSend_300_stret(stret, obj, sel, searchSet, mask); } - late final __objc_msgSend_300_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_300_stret = - __objc_msgSend_300_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_300_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_300_stret = __objc_msgSend_300_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_rangeOfCharacterFromSet_options_range_1 = _registerName1( "rangeOfCharacterFromSet:options:range:", @@ -10374,28 +10382,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_301Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_301 = - __objc_msgSend_301Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_301Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_301 = __objc_msgSend_301Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); void _objc_msgSend_301_stret( ffi.Pointer<_NSRange> stret, @@ -10415,30 +10423,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_301_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_301_stret = - __objc_msgSend_301_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_301_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_301_stret = __objc_msgSend_301_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_rangeOfComposedCharacterSequenceAtIndex_1 = _registerName1( "rangeOfComposedCharacterSequenceAtIndex:", @@ -10451,24 +10459,20 @@ class PedometerBindings { return __objc_msgSend_302(obj, sel, index); } - late final __objc_msgSend_302Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_302 = - __objc_msgSend_302Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_302Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_302 = __objc_msgSend_302Ptr + .asFunction< + _NSRange Function(ffi.Pointer, ffi.Pointer, int) + >(); void _objc_msgSend_302_stret( ffi.Pointer<_NSRange> stret, @@ -10479,26 +10483,26 @@ class PedometerBindings { return __objc_msgSend_302_stret(stret, obj, sel, index); } - late final __objc_msgSend_302_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_302_stret = - __objc_msgSend_302_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_302_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_302_stret = __objc_msgSend_302_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_rangeOfComposedCharacterSequencesForRange_1 = _registerName1( "rangeOfComposedCharacterSequencesForRange:", @@ -10511,20 +10515,24 @@ class PedometerBindings { return __objc_msgSend_303(obj, sel, range); } - late final __objc_msgSend_303Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function(ffi.Pointer, ffi.Pointer, _NSRange) - > - >('objc_msgSend'); - late final __objc_msgSend_303 = - __objc_msgSend_303Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_303Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_303 = __objc_msgSend_303Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); void _objc_msgSend_303_stret( ffi.Pointer<_NSRange> stret, @@ -10535,26 +10543,26 @@ class PedometerBindings { return __objc_msgSend_303_stret(stret, obj, sel, range); } - late final __objc_msgSend_303_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_303_stret = - __objc_msgSend_303_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_303_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_303_stret = __objc_msgSend_303_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_stringByAppendingString_1 = _registerName1( "stringByAppendingString:", @@ -10585,24 +10593,24 @@ class PedometerBindings { return __objc_msgSend_304(obj, sel, locale); } - late final __objc_msgSend_304Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_304 = - __objc_msgSend_304Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_304Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_304 = __objc_msgSend_304Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_lowercaseStringWithLocale_1 = _registerName1( "lowercaseStringWithLocale:", @@ -10631,30 +10639,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_305Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_305 = - __objc_msgSend_305Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_305Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_305 = __objc_msgSend_305Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_lineRangeForRange_1 = _registerName1("lineRangeForRange:"); late final _sel_getParagraphStart_end_contentsEnd_forRange_1 = _registerName1( @@ -10675,28 +10683,28 @@ class PedometerBindings { return __objc_msgSend_306(obj, sel, range, opts, block); } - late final __objc_msgSend_306Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_306 = - __objc_msgSend_306Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_306Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_306 = __objc_msgSend_306Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateLinesUsingBlock_1 = _registerName1( "enumerateLinesUsingBlock:", @@ -10709,24 +10717,24 @@ class PedometerBindings { return __objc_msgSend_307(obj, sel, block); } - late final __objc_msgSend_307Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_307 = - __objc_msgSend_307Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_307Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_307 = __objc_msgSend_307Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_UTF8String1 = _registerName1("UTF8String"); late final _sel_fastestEncoding1 = _registerName1("fastestEncoding"); @@ -10743,26 +10751,26 @@ class PedometerBindings { return __objc_msgSend_308(obj, sel, encoding, lossy); } - late final __objc_msgSend_308Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_308 = - __objc_msgSend_308Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - bool, - ) - >(); + late final __objc_msgSend_308Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_308 = __objc_msgSend_308Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + bool, + ) + >(); late final _sel_dataUsingEncoding_1 = _registerName1("dataUsingEncoding:"); ffi.Pointer _objc_msgSend_309( @@ -10773,24 +10781,24 @@ class PedometerBindings { return __objc_msgSend_309(obj, sel, encoding); } - late final __objc_msgSend_309Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_309 = - __objc_msgSend_309Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_309Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_309 = __objc_msgSend_309Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_canBeConvertedToEncoding_1 = _registerName1( "canBeConvertedToEncoding:", @@ -10811,28 +10819,28 @@ class PedometerBindings { return __objc_msgSend_310(obj, sel, buffer, maxBufferCount, encoding); } - late final __objc_msgSend_310Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_310 = - __objc_msgSend_310Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_310Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_310 = __objc_msgSend_310Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ) + >(); late final _sel_getBytes_maxLength_usedLength_encoding_options_range_remainingRange_1 = _registerName1( @@ -10862,36 +10870,36 @@ class PedometerBindings { ); } - late final __objc_msgSend_311Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Int32, - _NSRange, - ffi.Pointer<_NSRange>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_311 = - __objc_msgSend_311Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - int, - int, - _NSRange, - ffi.Pointer<_NSRange>, - ) - >(); + late final __objc_msgSend_311Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Int32, + _NSRange, + ffi.Pointer<_NSRange>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_311 = __objc_msgSend_311Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + int, + int, + _NSRange, + ffi.Pointer<_NSRange>, + ) + >(); late final _sel_maximumLengthOfBytesUsingEncoding_1 = _registerName1( "maximumLengthOfBytesUsingEncoding:", @@ -10909,22 +10917,22 @@ class PedometerBindings { return __objc_msgSend_312(obj, sel); } - late final __objc_msgSend_312Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_312 = - __objc_msgSend_312Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_312Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_312 = __objc_msgSend_312Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedNameOfStringEncoding_1 = _registerName1( "localizedNameOfStringEncoding:", @@ -10955,24 +10963,24 @@ class PedometerBindings { return __objc_msgSend_313(obj, sel, separator); } - late final __objc_msgSend_313Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_313 = - __objc_msgSend_313Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_313Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_313 = __objc_msgSend_313Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_componentsSeparatedByCharactersInSet_1 = _registerName1( "componentsSeparatedByCharactersInSet:", @@ -10985,24 +10993,24 @@ class PedometerBindings { return __objc_msgSend_314(obj, sel, separator); } - late final __objc_msgSend_314Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_314 = - __objc_msgSend_314Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_314Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_314 = __objc_msgSend_314Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stringByTrimmingCharactersInSet_1 = _registerName1( "stringByTrimmingCharactersInSet:", @@ -11015,24 +11023,24 @@ class PedometerBindings { return __objc_msgSend_315(obj, sel, set1); } - late final __objc_msgSend_315Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_315 = - __objc_msgSend_315Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_315Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_315 = __objc_msgSend_315Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stringByPaddingToLength_withString_startingAtIndex_1 = _registerName1("stringByPaddingToLength:withString:startingAtIndex:"); @@ -11046,34 +11054,34 @@ class PedometerBindings { return __objc_msgSend_316(obj, sel, newLength, padString, padIndex); } - late final __objc_msgSend_316Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_316 = - __objc_msgSend_316Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - int, - ) - >(); - - late final _sel_stringByFoldingWithOptions_locale_1 = _registerName1( - "stringByFoldingWithOptions:locale:", - ); - ffi.Pointer _objc_msgSend_317( - ffi.Pointer obj, + late final __objc_msgSend_316Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_316 = __objc_msgSend_316Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + int, + ) + >(); + + late final _sel_stringByFoldingWithOptions_locale_1 = _registerName1( + "stringByFoldingWithOptions:locale:", + ); + ffi.Pointer _objc_msgSend_317( + ffi.Pointer obj, ffi.Pointer sel, int options, ffi.Pointer locale, @@ -11081,26 +11089,26 @@ class PedometerBindings { return __objc_msgSend_317(obj, sel, options, locale); } - late final __objc_msgSend_317Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_317 = - __objc_msgSend_317Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_317Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_317 = __objc_msgSend_317Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_stringByReplacingOccurrencesOfString_withString_options_range_1 = _registerName1( @@ -11124,30 +11132,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_318Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_318 = - __objc_msgSend_318Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_318Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_318 = __objc_msgSend_318Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_stringByReplacingOccurrencesOfString_withString_1 = _registerName1("stringByReplacingOccurrencesOfString:withString:"); @@ -11160,26 +11168,26 @@ class PedometerBindings { return __objc_msgSend_319(obj, sel, target, replacement); } - late final __objc_msgSend_319Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_319 = - __objc_msgSend_319Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_319Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_319 = __objc_msgSend_319Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stringByReplacingCharactersInRange_withString_1 = _registerName1("stringByReplacingCharactersInRange:withString:"); @@ -11192,26 +11200,26 @@ class PedometerBindings { return __objc_msgSend_320(obj, sel, range, replacement); } - late final __objc_msgSend_320Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_320 = - __objc_msgSend_320Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_320Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_320 = __objc_msgSend_320Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_stringByApplyingTransform_reverse_1 = _registerName1( "stringByApplyingTransform:reverse:", @@ -11225,26 +11233,26 @@ class PedometerBindings { return __objc_msgSend_321(obj, sel, transform, reverse); } - late final __objc_msgSend_321Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_321 = - __objc_msgSend_321Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_321Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_321 = __objc_msgSend_321Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_writeToURL_atomically_encoding_error_1 = _registerName1( "writeToURL:atomically:encoding:error:", @@ -11260,30 +11268,30 @@ class PedometerBindings { return __objc_msgSend_322(obj, sel, url, useAuxiliaryFile, enc, error); } - late final __objc_msgSend_322Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.UnsignedLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_322 = - __objc_msgSend_322Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_322Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.UnsignedLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_322 = __objc_msgSend_322Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + int, + ffi.Pointer>, + ) + >(); late final _sel_writeToFile_atomically_encoding_error_1 = _registerName1( "writeToFile:atomically:encoding:error:", @@ -11299,30 +11307,30 @@ class PedometerBindings { return __objc_msgSend_323(obj, sel, path, useAuxiliaryFile, enc, error); } - late final __objc_msgSend_323Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.UnsignedLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_323 = - __objc_msgSend_323Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_323Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.UnsignedLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_323 = __objc_msgSend_323Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + int, + ffi.Pointer>, + ) + >(); late final _sel_hash1 = _registerName1("hash"); late final _sel_initWithCharactersNoCopy_length_freeWhenDone_1 = @@ -11337,28 +11345,28 @@ class PedometerBindings { return __objc_msgSend_324(obj, sel, characters, length, freeBuffer); } - late final __objc_msgSend_324Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_324 = - __objc_msgSend_324Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - bool, - ) - >(); + late final __objc_msgSend_324Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_324 = __objc_msgSend_324Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + bool, + ) + >(); late final _sel_initWithCharactersNoCopy_length_deallocator_1 = _registerName1("initWithCharactersNoCopy:length:deallocator:"); @@ -11372,28 +11380,28 @@ class PedometerBindings { return __objc_msgSend_325(obj, sel, chars, len, deallocator); } - late final __objc_msgSend_325Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_325 = - __objc_msgSend_325Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_325Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_325 = __objc_msgSend_325Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_initWithCharacters_length_1 = _registerName1( "initWithCharacters:length:", @@ -11407,26 +11415,26 @@ class PedometerBindings { return __objc_msgSend_326(obj, sel, characters, length); } - late final __objc_msgSend_326Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_326 = - __objc_msgSend_326Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_326Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_326 = __objc_msgSend_326Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUTF8String_1 = _registerName1("initWithUTF8String:"); instancetype _objc_msgSend_327( @@ -11437,24 +11445,24 @@ class PedometerBindings { return __objc_msgSend_327(obj, sel, nullTerminatedCString); } - late final __objc_msgSend_327Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_327 = - __objc_msgSend_327Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_327Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_327 = __objc_msgSend_327Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithFormat_1 = _registerName1("initWithFormat:"); late final _sel_initWithFormat_arguments_1 = _registerName1( @@ -11469,26 +11477,26 @@ class PedometerBindings { return __objc_msgSend_328(obj, sel, format, argList); } - late final __objc_msgSend_328Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_328 = - __objc_msgSend_328Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_328Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_328 = __objc_msgSend_328Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithFormat_locale_1 = _registerName1( "initWithFormat:locale:", @@ -11502,26 +11510,26 @@ class PedometerBindings { return __objc_msgSend_329(obj, sel, format, locale); } - late final __objc_msgSend_329Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_329 = - __objc_msgSend_329Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_329Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_329 = __objc_msgSend_329Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithFormat_locale_arguments_1 = _registerName1( "initWithFormat:locale:arguments:", @@ -11536,28 +11544,28 @@ class PedometerBindings { return __objc_msgSend_330(obj, sel, format, locale, argList); } - late final __objc_msgSend_330Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_330 = - __objc_msgSend_330Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_330Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_330 = __objc_msgSend_330Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithValidatedFormat_validFormatSpecifiers_error_1 = _registerName1("initWithValidatedFormat:validFormatSpecifiers:error:"); @@ -11571,28 +11579,28 @@ class PedometerBindings { return __objc_msgSend_331(obj, sel, format, validFormatSpecifiers, error); } - late final __objc_msgSend_331Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_331 = - __objc_msgSend_331Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_331Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_331 = __objc_msgSend_331Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithValidatedFormat_validFormatSpecifiers_locale_error_1 = _registerName1( @@ -11616,30 +11624,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_332Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_332 = - __objc_msgSend_332Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_332Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_332 = __objc_msgSend_332Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithValidatedFormat_validFormatSpecifiers_arguments_error_1 = _registerName1( @@ -11663,30 +11671,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_333Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_333 = - __objc_msgSend_333Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_333Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_333 = __objc_msgSend_333Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithValidatedFormat_validFormatSpecifiers_locale_arguments_error_1 = _registerName1( @@ -11712,32 +11720,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_334Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_334 = - __objc_msgSend_334Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_334Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_334 = __objc_msgSend_334Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithData_encoding_1 = _registerName1( "initWithData:encoding:", @@ -11751,26 +11759,26 @@ class PedometerBindings { return __objc_msgSend_335(obj, sel, data, encoding); } - late final __objc_msgSend_335Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_335 = - __objc_msgSend_335Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_335Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_335 = __objc_msgSend_335Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithBytes_length_encoding_1 = _registerName1( "initWithBytes:length:encoding:", @@ -11785,28 +11793,28 @@ class PedometerBindings { return __objc_msgSend_336(obj, sel, bytes, len, encoding); } - late final __objc_msgSend_336Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_336 = - __objc_msgSend_336Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_336Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_336 = __objc_msgSend_336Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ) + >(); late final _sel_initWithBytesNoCopy_length_encoding_freeWhenDone_1 = _registerName1("initWithBytesNoCopy:length:encoding:freeWhenDone:"); @@ -11821,30 +11829,30 @@ class PedometerBindings { return __objc_msgSend_337(obj, sel, bytes, len, encoding, freeBuffer); } - late final __objc_msgSend_337Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_337 = - __objc_msgSend_337Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - bool, - ) - >(); + late final __objc_msgSend_337Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_337 = __objc_msgSend_337Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + bool, + ) + >(); late final _sel_initWithBytesNoCopy_length_encoding_deallocator_1 = _registerName1("initWithBytesNoCopy:length:encoding:deallocator:"); @@ -11859,30 +11867,30 @@ class PedometerBindings { return __objc_msgSend_338(obj, sel, bytes, len, encoding, deallocator); } - late final __objc_msgSend_338Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_338 = - __objc_msgSend_338Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_338Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_338 = __objc_msgSend_338Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_string1 = _registerName1("string"); late final _sel_stringWithString_1 = _registerName1("stringWithString:"); @@ -11914,26 +11922,26 @@ class PedometerBindings { return __objc_msgSend_339(obj, sel, nullTerminatedCString, encoding); } - late final __objc_msgSend_339Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_339 = - __objc_msgSend_339Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_339Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_339 = __objc_msgSend_339Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_stringWithCString_encoding_1 = _registerName1( "stringWithCString:encoding:", @@ -11951,28 +11959,28 @@ class PedometerBindings { return __objc_msgSend_340(obj, sel, url, enc, error); } - late final __objc_msgSend_340Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_340 = - __objc_msgSend_340Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_340Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_340 = __objc_msgSend_340Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_initWithContentsOfFile_encoding_error_1 = _registerName1( "initWithContentsOfFile:encoding:error:", @@ -11987,28 +11995,28 @@ class PedometerBindings { return __objc_msgSend_341(obj, sel, path, enc, error); } - late final __objc_msgSend_341Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_341 = - __objc_msgSend_341Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_341Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_341 = __objc_msgSend_341Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_stringWithContentsOfURL_encoding_error_1 = _registerName1( "stringWithContentsOfURL:encoding:error:", @@ -12029,28 +12037,28 @@ class PedometerBindings { return __objc_msgSend_342(obj, sel, url, enc, error); } - late final __objc_msgSend_342Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_342 = - __objc_msgSend_342Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_342Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_342 = __objc_msgSend_342Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithContentsOfFile_usedEncoding_error_1 = _registerName1( "initWithContentsOfFile:usedEncoding:error:", @@ -12065,28 +12073,28 @@ class PedometerBindings { return __objc_msgSend_343(obj, sel, path, enc, error); } - late final __objc_msgSend_343Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_343 = - __objc_msgSend_343Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_343Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_343 = __objc_msgSend_343Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_stringWithContentsOfURL_usedEncoding_error_1 = _registerName1( "stringWithContentsOfURL:usedEncoding:error:", @@ -12115,30 +12123,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_344Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_344 = - __objc_msgSend_344Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_344Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_344 = __objc_msgSend_344Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ) + >(); late final _sel_propertyList1 = _registerName1("propertyList"); late final _sel_propertyListFromStringsFileFormat1 = _registerName1( @@ -12151,22 +12159,22 @@ class PedometerBindings { return __objc_msgSend_345(obj, sel); } - late final __objc_msgSend_345Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_345 = - __objc_msgSend_345Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_345Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_345 = __objc_msgSend_345Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_cString1 = _registerName1("cString"); late final _sel_lossyCString1 = _registerName1("lossyCString"); @@ -12184,26 +12192,26 @@ class PedometerBindings { return __objc_msgSend_346(obj, sel, bytes, maxLength); } - late final __objc_msgSend_346Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_346 = - __objc_msgSend_346Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_346Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_346 = __objc_msgSend_346Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_getCString_maxLength_range_remainingRange_1 = _registerName1( "getCString:maxLength:range:remainingRange:", @@ -12226,30 +12234,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_347Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - _NSRange, - ffi.Pointer<_NSRange>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_347 = - __objc_msgSend_347Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer<_NSRange>, - ) - >(); + late final __objc_msgSend_347Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + _NSRange, + ffi.Pointer<_NSRange>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_347 = __objc_msgSend_347Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer<_NSRange>, + ) + >(); late final _sel_stringWithContentsOfFile_1 = _registerName1( "stringWithContentsOfFile:", @@ -12270,28 +12278,28 @@ class PedometerBindings { return __objc_msgSend_348(obj, sel, bytes, length, freeBuffer); } - late final __objc_msgSend_348Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_348 = - __objc_msgSend_348Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - bool, - ) - >(); + late final __objc_msgSend_348Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_348 = __objc_msgSend_348Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + bool, + ) + >(); late final _sel_initWithCString_length_1 = _registerName1( "initWithCString:length:", @@ -12310,24 +12318,24 @@ class PedometerBindings { return __objc_msgSend_349(obj, sel, buffer); } - late final __objc_msgSend_349Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_349 = - __objc_msgSend_349Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_349Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_349 = __objc_msgSend_349Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_variantFittingPresentationWidth_1 = _registerName1( "variantFittingPresentationWidth:", @@ -12340,24 +12348,24 @@ class PedometerBindings { return __objc_msgSend_350(obj, sel, width); } - late final __objc_msgSend_350Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_350 = - __objc_msgSend_350Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_350Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_350 = __objc_msgSend_350Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_pathWithComponents_1 = _registerName1("pathWithComponents:"); ffi.Pointer _objc_msgSend_351( @@ -12368,24 +12376,24 @@ class PedometerBindings { return __objc_msgSend_351(obj, sel, components); } - late final __objc_msgSend_351Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_351 = - __objc_msgSend_351Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_351Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_351 = __objc_msgSend_351Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isAbsolutePath1 = _registerName1("isAbsolutePath"); late final _sel_stringByDeletingLastPathComponent1 = _registerName1( @@ -12437,30 +12445,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_352Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Bool, - ffi.Pointer>, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_352 = - __objc_msgSend_352Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - bool, - ffi.Pointer>, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_352Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Bool, + ffi.Pointer>, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_352 = __objc_msgSend_352Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + bool, + ffi.Pointer>, + ffi.Pointer, + ) + >(); late final _sel_stringByAddingPercentEncodingWithAllowedCharacters_1 = _registerName1("stringByAddingPercentEncodingWithAllowedCharacters:"); @@ -12472,24 +12480,24 @@ class PedometerBindings { return __objc_msgSend_353(obj, sel, allowedCharacters); } - late final __objc_msgSend_353Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_353 = - __objc_msgSend_353Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_353Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_353 = __objc_msgSend_353Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stringByRemovingPercentEncoding1 = _registerName1( "stringByRemovingPercentEncoding", @@ -12505,24 +12513,24 @@ class PedometerBindings { return __objc_msgSend_354(obj, sel, enc); } - late final __objc_msgSend_354Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_354 = - __objc_msgSend_354Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_354Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_354 = __objc_msgSend_354Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_stringByReplacingPercentEscapesUsingEncoding_1 = _registerName1("stringByReplacingPercentEscapesUsingEncoding:"); @@ -12536,22 +12544,22 @@ class PedometerBindings { return __objc_msgSend_355(obj, sel); } - late final __objc_msgSend_355Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_355 = - __objc_msgSend_355Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_355Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_355 = __objc_msgSend_355Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithDominantScript_languageMap_1 = _registerName1( "initWithDominantScript:languageMap:", @@ -12565,26 +12573,26 @@ class PedometerBindings { return __objc_msgSend_356(obj, sel, script, map); } - late final __objc_msgSend_356Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_356 = - __objc_msgSend_356Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_356Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_356 = __objc_msgSend_356Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_languagesForScript_1 = _registerName1("languagesForScript:"); late final _sel_dominantLanguageForScript_1 = _registerName1( @@ -12623,32 +12631,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_357Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_357 = - __objc_msgSend_357Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_357Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_357 = __objc_msgSend_357Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_enumerateLinguisticTagsInRange_scheme_options_orthography_usingBlock_1 = _registerName1( @@ -12674,32 +12682,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_358Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_358 = - __objc_msgSend_358Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_358Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_358 = __objc_msgSend_358Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_anyObject1 = _registerName1("anyObject"); late final _sel_intersectsSet_1 = _registerName1("intersectsSet:"); @@ -12711,24 +12719,24 @@ class PedometerBindings { return __objc_msgSend_359(obj, sel, otherSet); } - late final __objc_msgSend_359Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_359 = - __objc_msgSend_359Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_359Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_359 = __objc_msgSend_359Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isEqualToSet_1 = _registerName1("isEqualToSet:"); late final _sel_isSubsetOfSet_1 = _registerName1("isSubsetOfSet:"); @@ -12741,24 +12749,24 @@ class PedometerBindings { return __objc_msgSend_360(obj, sel, anObject); } - late final __objc_msgSend_360Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_360 = - __objc_msgSend_360Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_360Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_360 = __objc_msgSend_360Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setByAddingObjectsFromSet_1 = _registerName1( "setByAddingObjectsFromSet:", @@ -12771,24 +12779,24 @@ class PedometerBindings { return __objc_msgSend_361(obj, sel, other); } - late final __objc_msgSend_361Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_361 = - __objc_msgSend_361Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_361Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_361 = __objc_msgSend_361Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setByAddingObjectsFromArray_1 = _registerName1( "setByAddingObjectsFromArray:", @@ -12801,24 +12809,24 @@ class PedometerBindings { return __objc_msgSend_362(obj, sel, other); } - late final __objc_msgSend_362Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_362 = - __objc_msgSend_362Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_362Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_362 = __objc_msgSend_362Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_363( ffi.Pointer obj, @@ -12828,24 +12836,24 @@ class PedometerBindings { return __objc_msgSend_363(obj, sel, block); } - late final __objc_msgSend_363Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_363 = - __objc_msgSend_363Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_363Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_363 = __objc_msgSend_363Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); void _objc_msgSend_364( ffi.Pointer obj, @@ -12856,26 +12864,26 @@ class PedometerBindings { return __objc_msgSend_364(obj, sel, opts, block); } - late final __objc_msgSend_364Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_364 = - __objc_msgSend_364Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_364Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_364 = __objc_msgSend_364Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_objectsPassingTest_1 = _registerName1("objectsPassingTest:"); ffi.Pointer _objc_msgSend_365( @@ -12886,24 +12894,24 @@ class PedometerBindings { return __objc_msgSend_365(obj, sel, predicate); } - late final __objc_msgSend_365Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_365 = - __objc_msgSend_365Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_365Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_365 = __objc_msgSend_365Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_objectsWithOptions_passingTest_1 = _registerName1( "objectsWithOptions:passingTest:", @@ -12917,26 +12925,26 @@ class PedometerBindings { return __objc_msgSend_366(obj, sel, opts, predicate); } - late final __objc_msgSend_366Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_366 = - __objc_msgSend_366Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_366Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_366 = __objc_msgSend_366Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_set1 = _registerName1("set"); late final _sel_setWithObject_1 = _registerName1("setWithObject:"); @@ -12953,24 +12961,24 @@ class PedometerBindings { return __objc_msgSend_367(obj, sel, set1); } - late final __objc_msgSend_367Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_367 = - __objc_msgSend_367Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_367Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_367 = __objc_msgSend_367Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setWithArray_1 = _registerName1("setWithArray:"); late final _sel_initWithSet_1 = _registerName1("initWithSet:"); @@ -12986,28 +12994,28 @@ class PedometerBindings { return __objc_msgSend_368(obj, sel, set1, flag); } - late final __objc_msgSend_368Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_368 = - __objc_msgSend_368Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); - - late final _sel_filteredSetUsingPredicate_1 = _registerName1( + late final __objc_msgSend_368Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_368 = __objc_msgSend_368Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); + + late final _sel_filteredSetUsingPredicate_1 = _registerName1( "filteredSetUsingPredicate:", ); ffi.Pointer _objc_msgSend_369( @@ -13018,24 +13026,24 @@ class PedometerBindings { return __objc_msgSend_369(obj, sel, predicate); } - late final __objc_msgSend_369Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_369 = - __objc_msgSend_369Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_369Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_369 = __objc_msgSend_369Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_invocationWithMethodSignature_1 = _registerName1( "invocationWithMethodSignature:", @@ -13048,24 +13056,24 @@ class PedometerBindings { return __objc_msgSend_370(obj, sel, sig); } - late final __objc_msgSend_370Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_370 = - __objc_msgSend_370Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_370Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_370 = __objc_msgSend_370Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_methodSignature1 = _registerName1("methodSignature"); ffi.Pointer _objc_msgSend_371( @@ -13075,22 +13083,22 @@ class PedometerBindings { return __objc_msgSend_371(obj, sel); } - late final __objc_msgSend_371Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_371 = - __objc_msgSend_371Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_371Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_371 = __objc_msgSend_371Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_retainArguments1 = _registerName1("retainArguments"); late final _sel_argumentsRetained1 = _registerName1("argumentsRetained"); @@ -13104,24 +13112,24 @@ class PedometerBindings { return __objc_msgSend_372(obj, sel, value); } - late final __objc_msgSend_372Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_372 = - __objc_msgSend_372Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_372Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_372 = __objc_msgSend_372Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_selector1 = _registerName1("selector"); ffi.Pointer _objc_msgSend_373( @@ -13131,22 +13139,22 @@ class PedometerBindings { return __objc_msgSend_373(obj, sel); } - late final __objc_msgSend_373Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_373 = - __objc_msgSend_373Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_373Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_373 = __objc_msgSend_373Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setSelector_1 = _registerName1("setSelector:"); void _objc_msgSend_374( @@ -13157,24 +13165,24 @@ class PedometerBindings { return __objc_msgSend_374(obj, sel, value); } - late final __objc_msgSend_374Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_374 = - __objc_msgSend_374Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_374Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_374 = __objc_msgSend_374Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getReturnValue_1 = _registerName1("getReturnValue:"); late final _sel_setReturnValue_1 = _registerName1("setReturnValue:"); @@ -13190,26 +13198,26 @@ class PedometerBindings { return __objc_msgSend_375(obj, sel, argumentLocation, idx); } - late final __objc_msgSend_375Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_375 = - __objc_msgSend_375Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_375Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_375 = __objc_msgSend_375Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_setArgument_atIndex_1 = _registerName1( "setArgument:atIndex:", @@ -13225,24 +13233,24 @@ class PedometerBindings { return __objc_msgSend_376(obj, sel, imp); } - late final __objc_msgSend_376Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_376 = - __objc_msgSend_376Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_376Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_376 = __objc_msgSend_376Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_forwardInvocation_1 = _registerName1("forwardInvocation:"); void _objc_msgSend_377( @@ -13253,24 +13261,24 @@ class PedometerBindings { return __objc_msgSend_377(obj, sel, anInvocation); } - late final __objc_msgSend_377Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_377 = - __objc_msgSend_377Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_377Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_377 = __objc_msgSend_377Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_methodSignatureForSelector_1 = _registerName1( "methodSignatureForSelector:", @@ -13283,24 +13291,24 @@ class PedometerBindings { return __objc_msgSend_378(obj, sel, aSelector); } - late final __objc_msgSend_378Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_378 = - __objc_msgSend_378Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_378Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_378 = __objc_msgSend_378Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_instanceMethodSignatureForSelector_1 = _registerName1( "instanceMethodSignatureForSelector:", @@ -13325,16 +13333,20 @@ class PedometerBindings { return __objc_msgSend_379(obj, sel, aVersion); } - late final __objc_msgSend_379Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function(ffi.Pointer, ffi.Pointer, ffi.Long) - > - >('objc_msgSend'); - late final __objc_msgSend_379 = - __objc_msgSend_379Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_379Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_379 = __objc_msgSend_379Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_classForCoder1 = _registerName1("classForCoder"); late final _sel_replacementObjectForCoder_1 = _registerName1( @@ -13371,32 +13383,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_380Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_380 = - __objc_msgSend_380Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_380Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_380 = __objc_msgSend_380Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_attemptRecoveryFromError_optionIndex_1 = _registerName1( "attemptRecoveryFromError:optionIndex:", @@ -13410,26 +13422,26 @@ class PedometerBindings { return __objc_msgSend_381(obj, sel, error, recoveryOptionIndex); } - late final __objc_msgSend_381Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_381 = - __objc_msgSend_381Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_381Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_381 = __objc_msgSend_381Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_performSelector_withObject_afterDelay_inModes_1 = _registerName1("performSelector:withObject:afterDelay:inModes:"); @@ -13444,30 +13456,30 @@ class PedometerBindings { return __objc_msgSend_382(obj, sel, aSelector, anArgument, delay, modes); } - late final __objc_msgSend_382Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_382 = - __objc_msgSend_382Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_382Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_382 = __objc_msgSend_382Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ) + >(); late final _sel_performSelector_withObject_afterDelay_1 = _registerName1( "performSelector:withObject:afterDelay:", @@ -13482,28 +13494,28 @@ class PedometerBindings { return __objc_msgSend_383(obj, sel, aSelector, anArgument, delay); } - late final __objc_msgSend_383Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_383 = - __objc_msgSend_383Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - double, - ) - >(); + late final __objc_msgSend_383Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_383 = __objc_msgSend_383Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + double, + ) + >(); late final _sel_URL_resourceDataDidBecomeAvailable_1 = _registerName1( "URL:resourceDataDidBecomeAvailable:", @@ -13517,26 +13529,26 @@ class PedometerBindings { return __objc_msgSend_384(obj, sel, sender, newBytes); } - late final __objc_msgSend_384Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_384 = - __objc_msgSend_384Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_384Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_384 = __objc_msgSend_384Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLResourceDidFinishLoading_1 = _registerName1( "URLResourceDidFinishLoading:", @@ -13549,24 +13561,24 @@ class PedometerBindings { return __objc_msgSend_385(obj, sel, sender); } - late final __objc_msgSend_385Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_385 = - __objc_msgSend_385Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_385Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_385 = __objc_msgSend_385Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLResourceDidCancelLoading_1 = _registerName1( "URLResourceDidCancelLoading:", @@ -13583,26 +13595,26 @@ class PedometerBindings { return __objc_msgSend_386(obj, sel, sender, reason); } - late final __objc_msgSend_386Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_386 = - __objc_msgSend_386Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_386Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_386 = __objc_msgSend_386Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSFileManager1 = _getClass1("NSFileManager"); late final _sel_defaultManager1 = _registerName1("defaultManager"); @@ -13613,22 +13625,22 @@ class PedometerBindings { return __objc_msgSend_387(obj, sel); } - late final __objc_msgSend_387Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_387 = - __objc_msgSend_387Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_387Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_387 = __objc_msgSend_387Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_mountedVolumeURLsIncludingResourceValuesForKeys_options_1 = _registerName1( @@ -13643,26 +13655,26 @@ class PedometerBindings { return __objc_msgSend_388(obj, sel, propertyKeys, options); } - late final __objc_msgSend_388Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_388 = - __objc_msgSend_388Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_388Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_388 = __objc_msgSend_388Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_unmountVolumeAtURL_options_completionHandler_1 = _registerName1("unmountVolumeAtURL:options:completionHandler:"); @@ -13676,28 +13688,28 @@ class PedometerBindings { return __objc_msgSend_389(obj, sel, url, mask, completionHandler); } - late final __objc_msgSend_389Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_389 = - __objc_msgSend_389Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_389Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_389 = __objc_msgSend_389Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_contentsOfDirectoryAtURL_includingPropertiesForKeys_options_error_1 = _registerName1( @@ -13714,30 +13726,30 @@ class PedometerBindings { return __objc_msgSend_390(obj, sel, url, keys, mask, error); } - late final __objc_msgSend_390Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_390 = - __objc_msgSend_390Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_390Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_390 = __objc_msgSend_390Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_URLsForDirectory_inDomains_1 = _registerName1( "URLsForDirectory:inDomains:", @@ -13751,26 +13763,26 @@ class PedometerBindings { return __objc_msgSend_391(obj, sel, directory, domainMask); } - late final __objc_msgSend_391Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_391 = - __objc_msgSend_391Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_391Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_391 = __objc_msgSend_391Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ) + >(); late final _sel_URLForDirectory_inDomain_appropriateForURL_create_error_1 = _registerName1( @@ -13796,32 +13808,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_392Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ffi.Pointer, - ffi.Bool, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_392 = - __objc_msgSend_392Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - bool, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_392Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ffi.Pointer, + ffi.Bool, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_392 = __objc_msgSend_392Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + bool, + ffi.Pointer>, + ) + >(); late final _sel_getRelationship_ofDirectoryAtURL_toItemAtURL_error_1 = _registerName1("getRelationship:ofDirectoryAtURL:toItemAtURL:error:"); @@ -13843,30 +13855,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_393Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_393 = - __objc_msgSend_393Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_393Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_393 = __objc_msgSend_393Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_getRelationship_ofDirectory_inDomain_toItemAtURL_error_1 = _registerName1("getRelationship:ofDirectory:inDomain:toItemAtURL:error:"); @@ -13890,32 +13902,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_394Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_394 = - __objc_msgSend_394Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_394Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_394 = __objc_msgSend_394Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_createDirectoryAtURL_withIntermediateDirectories_attributes_error_1 = _registerName1( @@ -13939,30 +13951,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_395Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_395 = - __objc_msgSend_395Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_395Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_395 = __objc_msgSend_395Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_createSymbolicLinkAtURL_withDestinationURL_error_1 = _registerName1("createSymbolicLinkAtURL:withDestinationURL:error:"); @@ -13976,28 +13988,28 @@ class PedometerBindings { return __objc_msgSend_396(obj, sel, url, destURL, error); } - late final __objc_msgSend_396Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_396 = - __objc_msgSend_396Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_396Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_396 = __objc_msgSend_396Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_delegate1 = _registerName1("delegate"); late final _sel_setDelegate_1 = _registerName1("setDelegate:"); @@ -14014,28 +14026,28 @@ class PedometerBindings { return __objc_msgSend_397(obj, sel, attributes, path, error); } - late final __objc_msgSend_397Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_397 = - __objc_msgSend_397Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_397Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_397 = __objc_msgSend_397Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_createDirectoryAtPath_withIntermediateDirectories_attributes_error_1 = _registerName1( @@ -14059,30 +14071,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_398Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_398 = - __objc_msgSend_398Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_398Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_398 = __objc_msgSend_398Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_contentsOfDirectoryAtPath_error_1 = _registerName1( "contentsOfDirectoryAtPath:error:", @@ -14096,26 +14108,26 @@ class PedometerBindings { return __objc_msgSend_399(obj, sel, path, error); } - late final __objc_msgSend_399Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_399 = - __objc_msgSend_399Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_399Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_399 = __objc_msgSend_399Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_subpathsOfDirectoryAtPath_error_1 = _registerName1( "subpathsOfDirectoryAtPath:error:", @@ -14132,26 +14144,26 @@ class PedometerBindings { return __objc_msgSend_400(obj, sel, path, error); } - late final __objc_msgSend_400Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_400 = - __objc_msgSend_400Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_400Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_400 = __objc_msgSend_400Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_attributesOfFileSystemForPath_error_1 = _registerName1( "attributesOfFileSystemForPath:error:", @@ -14168,28 +14180,28 @@ class PedometerBindings { return __objc_msgSend_401(obj, sel, path, destPath, error); } - late final __objc_msgSend_401Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_401 = - __objc_msgSend_401Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_401Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_401 = __objc_msgSend_401Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_destinationOfSymbolicLinkAtPath_error_1 = _registerName1( "destinationOfSymbolicLinkAtPath:error:", @@ -14203,26 +14215,26 @@ class PedometerBindings { return __objc_msgSend_402(obj, sel, path, error); } - late final __objc_msgSend_402Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_402 = - __objc_msgSend_402Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_402Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_402 = __objc_msgSend_402Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_copyItemAtPath_toPath_error_1 = _registerName1( "copyItemAtPath:toPath:error:", @@ -14245,26 +14257,26 @@ class PedometerBindings { return __objc_msgSend_403(obj, sel, path, error); } - late final __objc_msgSend_403Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_403 = - __objc_msgSend_403Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_403Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_403 = __objc_msgSend_403Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_copyItemAtURL_toURL_error_1 = _registerName1( "copyItemAtURL:toURL:error:", @@ -14291,28 +14303,28 @@ class PedometerBindings { return __objc_msgSend_404(obj, sel, url, outResultingURL, error); } - late final __objc_msgSend_404Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_404 = - __objc_msgSend_404Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_404Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_404 = __objc_msgSend_404Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_fileAttributesAtPath_traverseLink_1 = _registerName1( "fileAttributesAtPath:traverseLink:", @@ -14326,26 +14338,26 @@ class PedometerBindings { return __objc_msgSend_405(obj, sel, path, yorn); } - late final __objc_msgSend_405Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_405 = - __objc_msgSend_405Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_405Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_405 = __objc_msgSend_405Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_changeFileAttributes_atPath_1 = _registerName1( "changeFileAttributes:atPath:", @@ -14359,26 +14371,26 @@ class PedometerBindings { return __objc_msgSend_406(obj, sel, attributes, path); } - late final __objc_msgSend_406Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_406 = - __objc_msgSend_406Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_406Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_406 = __objc_msgSend_406Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_directoryContentsAtPath_1 = _registerName1( "directoryContentsAtPath:", @@ -14401,26 +14413,26 @@ class PedometerBindings { return __objc_msgSend_407(obj, sel, path, otherpath); } - late final __objc_msgSend_407Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_407 = - __objc_msgSend_407Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_407Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_407 = __objc_msgSend_407Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_createDirectoryAtPath_attributes_1 = _registerName1( "createDirectoryAtPath:attributes:", @@ -14434,26 +14446,26 @@ class PedometerBindings { return __objc_msgSend_408(obj, sel, path, attributes); } - late final __objc_msgSend_408Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_408 = - __objc_msgSend_408Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_408Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_408 = __objc_msgSend_408Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_linkPath_toPath_handler_1 = _registerName1( "linkPath:toPath:handler:", @@ -14468,28 +14480,28 @@ class PedometerBindings { return __objc_msgSend_409(obj, sel, src, dest, handler); } - late final __objc_msgSend_409Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_409 = - __objc_msgSend_409Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_409Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_409 = __objc_msgSend_409Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_copyPath_toPath_handler_1 = _registerName1( "copyPath:toPath:handler:", @@ -14509,26 +14521,26 @@ class PedometerBindings { return __objc_msgSend_410(obj, sel, path, handler); } - late final __objc_msgSend_410Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_410 = - __objc_msgSend_410Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_410Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_410 = __objc_msgSend_410Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_currentDirectoryPath1 = _registerName1( "currentDirectoryPath", @@ -14549,26 +14561,26 @@ class PedometerBindings { return __objc_msgSend_411(obj, sel, path, isDirectory); } - late final __objc_msgSend_411Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_411 = - __objc_msgSend_411Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_411Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_411 = __objc_msgSend_411Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isReadableFileAtPath_1 = _registerName1( "isReadableFileAtPath:", @@ -14605,30 +14617,30 @@ class PedometerBindings { return __objc_msgSend_412(obj, sel, url, keys, mask, handler); } - late final __objc_msgSend_412Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_412 = - __objc_msgSend_412Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_412Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_412 = __objc_msgSend_412Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_subpathsAtPath_1 = _registerName1("subpathsAtPath:"); late final _sel_contentsAtPath_1 = _registerName1("contentsAtPath:"); @@ -14640,24 +14652,24 @@ class PedometerBindings { return __objc_msgSend_413(obj, sel, path); } - late final __objc_msgSend_413Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_413 = - __objc_msgSend_413Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_413Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_413 = __objc_msgSend_413Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_createFileAtPath_contents_attributes_1 = _registerName1( "createFileAtPath:contents:attributes:", @@ -14672,28 +14684,28 @@ class PedometerBindings { return __objc_msgSend_414(obj, sel, path, data, attr); } - late final __objc_msgSend_414Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_414 = - __objc_msgSend_414Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_414Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_414 = __objc_msgSend_414Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileSystemRepresentationWithPath_1 = _registerName1( "fileSystemRepresentationWithPath:", @@ -14706,24 +14718,24 @@ class PedometerBindings { return __objc_msgSend_415(obj, sel, path); } - late final __objc_msgSend_415Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_415 = - __objc_msgSend_415Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_415Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_415 = __objc_msgSend_415Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stringWithFileSystemRepresentation_length_1 = _registerName1( "stringWithFileSystemRepresentation:length:", @@ -14737,26 +14749,26 @@ class PedometerBindings { return __objc_msgSend_416(obj, sel, str, len); } - late final __objc_msgSend_416Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_416 = - __objc_msgSend_416Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_416Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_416 = __objc_msgSend_416Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_replaceItemAtURL_withItemAtURL_backupItemName_options_resultingItemURL_error_1 = _registerName1( @@ -14784,34 +14796,34 @@ class PedometerBindings { ); } - late final __objc_msgSend_417Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_417 = - __objc_msgSend_417Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_417Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_417 = __objc_msgSend_417Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_setUbiquitous_itemAtURL_destinationURL_error_1 = _registerName1("setUbiquitous:itemAtURL:destinationURL:error:"); @@ -14826,30 +14838,30 @@ class PedometerBindings { return __objc_msgSend_418(obj, sel, flag, url, destinationURL, error); } - late final __objc_msgSend_418Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_418 = - __objc_msgSend_418Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_418Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_418 = __objc_msgSend_418Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_isUbiquitousItemAtURL_1 = _registerName1( "isUbiquitousItemAtURL:", @@ -14862,24 +14874,24 @@ class PedometerBindings { return __objc_msgSend_419(obj, sel, url); } - late final __objc_msgSend_419Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_419 = - __objc_msgSend_419Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_419Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_419 = __objc_msgSend_419Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_startDownloadingUbiquitousItemAtURL_error_1 = _registerName1( "startDownloadingUbiquitousItemAtURL:error:", @@ -14898,24 +14910,24 @@ class PedometerBindings { return __objc_msgSend_420(obj, sel, containerIdentifier); } - late final __objc_msgSend_420Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_420 = - __objc_msgSend_420Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_420Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_420 = __objc_msgSend_420Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLForPublishingUbiquitousItemAtURL_expirationDate_error_1 = _registerName1( @@ -14931,28 +14943,28 @@ class PedometerBindings { return __objc_msgSend_421(obj, sel, url, outDate, error); } - late final __objc_msgSend_421Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_421 = - __objc_msgSend_421Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_421Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_421 = __objc_msgSend_421Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_ubiquityIdentityToken1 = _registerName1( "ubiquityIdentityToken", @@ -14968,26 +14980,26 @@ class PedometerBindings { return __objc_msgSend_422(obj, sel, url, completionHandler); } - late final __objc_msgSend_422Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_422 = - __objc_msgSend_422Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_422Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_422 = __objc_msgSend_422Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_containerURLForSecurityApplicationGroupIdentifier_1 = _registerName1("containerURLForSecurityApplicationGroupIdentifier:"); @@ -15001,22 +15013,22 @@ class PedometerBindings { return __objc_msgSend_423(obj, sel); } - late final __objc_msgSend_423Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_423 = - __objc_msgSend_423Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_423Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_423 = __objc_msgSend_423Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_temporaryDirectory1 = _registerName1("temporaryDirectory"); late final _sel_homeDirectoryForUser_1 = _registerName1( @@ -15034,26 +15046,26 @@ class PedometerBindings { return __objc_msgSend_424(obj, sel, fm, errorInfo); } - late final __objc_msgSend_424Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_424 = - __objc_msgSend_424Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_424Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_424 = __objc_msgSend_424Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileManager_willProcessPath_1 = _registerName1( "fileManager:willProcessPath:", @@ -15067,26 +15079,26 @@ class PedometerBindings { return __objc_msgSend_425(obj, sel, fm, path); } - late final __objc_msgSend_425Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_425 = - __objc_msgSend_425Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_425Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_425 = __objc_msgSend_425Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_validateValue_forKey_error_1 = _registerName1( "validateValue:forKey:error:", @@ -15105,26 +15117,26 @@ class PedometerBindings { return __objc_msgSend_426(obj, sel, anObject, index); } - late final __objc_msgSend_426Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_426 = - __objc_msgSend_426Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_426Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_426 = __objc_msgSend_426Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_removeLastObject1 = _registerName1("removeLastObject"); late final _sel_removeObjectAtIndex_1 = _registerName1( @@ -15138,20 +15150,20 @@ class PedometerBindings { return __objc_msgSend_427(obj, sel, index); } - late final __objc_msgSend_427Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_427 = - __objc_msgSend_427Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_427Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_427 = __objc_msgSend_427Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_replaceObjectAtIndex_withObject_1 = _registerName1( "replaceObjectAtIndex:withObject:", @@ -15165,26 +15177,26 @@ class PedometerBindings { return __objc_msgSend_428(obj, sel, index, anObject); } - late final __objc_msgSend_428Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_428 = - __objc_msgSend_428Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_428Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_428 = __objc_msgSend_428Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_initWithCapacity_1 = _registerName1("initWithCapacity:"); late final _sel_addObjectsFromArray_1 = _registerName1( @@ -15198,24 +15210,24 @@ class PedometerBindings { return __objc_msgSend_429(obj, sel, otherArray); } - late final __objc_msgSend_429Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_429 = - __objc_msgSend_429Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_429Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_429 = __objc_msgSend_429Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_exchangeObjectAtIndex_withObjectAtIndex_1 = _registerName1( "exchangeObjectAtIndex:withObjectAtIndex:", @@ -15229,26 +15241,21 @@ class PedometerBindings { return __objc_msgSend_430(obj, sel, idx1, idx2); } - late final __objc_msgSend_430Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_430 = - __objc_msgSend_430Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_430Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_430 = __objc_msgSend_430Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int, int) + >(); late final _sel_removeAllObjects1 = _registerName1("removeAllObjects"); late final _sel_removeObject_inRange_1 = _registerName1( @@ -15263,26 +15270,26 @@ class PedometerBindings { return __objc_msgSend_431(obj, sel, anObject, range); } - late final __objc_msgSend_431Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_431 = - __objc_msgSend_431Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_431Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_431 = __objc_msgSend_431Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_removeObject_1 = _registerName1("removeObject:"); late final _sel_removeObjectIdenticalTo_inRange_1 = _registerName1( @@ -15303,26 +15310,26 @@ class PedometerBindings { return __objc_msgSend_432(obj, sel, indices, cnt); } - late final __objc_msgSend_432Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_432 = - __objc_msgSend_432Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_432Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_432 = __objc_msgSend_432Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_removeObjectsInArray_1 = _registerName1( "removeObjectsInArray:", @@ -15338,20 +15345,20 @@ class PedometerBindings { return __objc_msgSend_433(obj, sel, range); } - late final __objc_msgSend_433Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function(ffi.Pointer, ffi.Pointer, _NSRange) - > - >('objc_msgSend'); - late final __objc_msgSend_433 = - __objc_msgSend_433Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_433Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_433 = __objc_msgSend_433Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, _NSRange) + >(); late final _sel_replaceObjectsInRange_withObjectsFromArray_range_1 = _registerName1("replaceObjectsInRange:withObjectsFromArray:range:"); @@ -15365,28 +15372,28 @@ class PedometerBindings { return __objc_msgSend_434(obj, sel, range, otherArray, otherRange); } - late final __objc_msgSend_434Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_434 = - __objc_msgSend_434Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_434Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_434 = __objc_msgSend_434Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_replaceObjectsInRange_withObjectsFromArray_1 = _registerName1( "replaceObjectsInRange:withObjectsFromArray:", @@ -15400,26 +15407,26 @@ class PedometerBindings { return __objc_msgSend_435(obj, sel, range, otherArray); } - late final __objc_msgSend_435Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_435 = - __objc_msgSend_435Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_435Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_435 = __objc_msgSend_435Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_setArray_1 = _registerName1("setArray:"); late final _sel_sortUsingFunction_context_1 = _registerName1( @@ -15443,42 +15450,42 @@ class PedometerBindings { return __objc_msgSend_436(obj, sel, compare, context); } - late final __objc_msgSend_436Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_436 = - __objc_msgSend_436Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_436Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_436 = __objc_msgSend_436Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >, + ffi.Pointer, + ) + >(); late final _sel_sortUsingSelector_1 = _registerName1("sortUsingSelector:"); late final _sel_insertObjects_atIndexes_1 = _registerName1( @@ -15493,26 +15500,26 @@ class PedometerBindings { return __objc_msgSend_437(obj, sel, objects, indexes); } - late final __objc_msgSend_437Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_437 = - __objc_msgSend_437Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_437Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_437 = __objc_msgSend_437Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeObjectsAtIndexes_1 = _registerName1( "removeObjectsAtIndexes:", @@ -15525,24 +15532,24 @@ class PedometerBindings { return __objc_msgSend_438(obj, sel, indexes); } - late final __objc_msgSend_438Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_438 = - __objc_msgSend_438Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_438Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_438 = __objc_msgSend_438Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_replaceObjectsAtIndexes_withObjects_1 = _registerName1( "replaceObjectsAtIndexes:withObjects:", @@ -15556,26 +15563,26 @@ class PedometerBindings { return __objc_msgSend_439(obj, sel, indexes, objects); } - late final __objc_msgSend_439Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_439 = - __objc_msgSend_439Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_439Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_439 = __objc_msgSend_439Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setObject_atIndexedSubscript_1 = _registerName1( "setObject:atIndexedSubscript:", @@ -15591,24 +15598,24 @@ class PedometerBindings { return __objc_msgSend_440(obj, sel, cmptr); } - late final __objc_msgSend_440Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_440 = - __objc_msgSend_440Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_440Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_440 = __objc_msgSend_440Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_sortWithOptions_usingComparator_1 = _registerName1( "sortWithOptions:usingComparator:", @@ -15622,26 +15629,26 @@ class PedometerBindings { return __objc_msgSend_441(obj, sel, opts, cmptr); } - late final __objc_msgSend_441Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_441 = - __objc_msgSend_441Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_441Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_441 = __objc_msgSend_441Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_arrayWithCapacity_1 = _registerName1("arrayWithCapacity:"); ffi.Pointer _objc_msgSend_442( @@ -15652,24 +15659,24 @@ class PedometerBindings { return __objc_msgSend_442(obj, sel, path); } - late final __objc_msgSend_442Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_442 = - __objc_msgSend_442Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_442Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_442 = __objc_msgSend_442Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); ffi.Pointer _objc_msgSend_443( ffi.Pointer obj, @@ -15679,24 +15686,24 @@ class PedometerBindings { return __objc_msgSend_443(obj, sel, url); } - late final __objc_msgSend_443Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_443 = - __objc_msgSend_443Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_443Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_443 = __objc_msgSend_443Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_applyDifference_1 = _registerName1("applyDifference:"); late final _sel_sortUsingDescriptors_1 = _registerName1( @@ -15713,24 +15720,24 @@ class PedometerBindings { return __objc_msgSend_444(obj, sel, predicate); } - late final __objc_msgSend_444Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_444 = - __objc_msgSend_444Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_444Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_444 = __objc_msgSend_444Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_mutableArrayValueForKey_1 = _registerName1( "mutableArrayValueForKey:", @@ -15743,24 +15750,24 @@ class PedometerBindings { return __objc_msgSend_445(obj, sel, key); } - late final __objc_msgSend_445Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_445 = - __objc_msgSend_445Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_445Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_445 = __objc_msgSend_445Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSMutableOrderedSet1 = _getClass1("NSMutableOrderedSet"); late final _class_NSOrderedSet1 = _getClass1("NSOrderedSet"); @@ -15775,24 +15782,24 @@ class PedometerBindings { return __objc_msgSend_446(obj, sel, other); } - late final __objc_msgSend_446Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_446 = - __objc_msgSend_446Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_446Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_446 = __objc_msgSend_446Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_intersectsOrderedSet_1 = _registerName1( "intersectsOrderedSet:", @@ -15808,22 +15815,22 @@ class PedometerBindings { return __objc_msgSend_447(obj, sel); } - late final __objc_msgSend_447Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_447 = - __objc_msgSend_447Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_447Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_447 = __objc_msgSend_447Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); ffi.Pointer _objc_msgSend_448( ffi.Pointer obj, @@ -15832,22 +15839,22 @@ class PedometerBindings { return __objc_msgSend_448(obj, sel); } - late final __objc_msgSend_448Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_448 = - __objc_msgSend_448Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_448Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_448 = __objc_msgSend_448Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_orderedSet1 = _registerName1("orderedSet"); late final _sel_orderedSetWithObject_1 = _registerName1( @@ -15870,24 +15877,24 @@ class PedometerBindings { return __objc_msgSend_449(obj, sel, set1); } - late final __objc_msgSend_449Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_449 = - __objc_msgSend_449Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_449Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_449 = __objc_msgSend_449Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_orderedSetWithOrderedSet_range_copyItems_1 = _registerName1( "orderedSetWithOrderedSet:range:copyItems:", @@ -15902,28 +15909,28 @@ class PedometerBindings { return __objc_msgSend_450(obj, sel, set1, range, flag); } - late final __objc_msgSend_450Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_450 = - __objc_msgSend_450Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - bool, - ) - >(); + late final __objc_msgSend_450Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_450 = __objc_msgSend_450Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + bool, + ) + >(); late final _sel_orderedSetWithArray_1 = _registerName1( "orderedSetWithArray:", @@ -15941,28 +15948,28 @@ class PedometerBindings { return __objc_msgSend_451(obj, sel, array, range, flag); } - late final __objc_msgSend_451Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_451 = - __objc_msgSend_451Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - bool, - ) - >(); + late final __objc_msgSend_451Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_451 = __objc_msgSend_451Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + bool, + ) + >(); late final _sel_orderedSetWithSet_1 = _registerName1("orderedSetWithSet:"); late final _sel_orderedSetWithSet_copyItems_1 = _registerName1( @@ -15982,26 +15989,26 @@ class PedometerBindings { return __objc_msgSend_452(obj, sel, set1, flag); } - late final __objc_msgSend_452Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_452 = - __objc_msgSend_452Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_452Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_452 = __objc_msgSend_452Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_initWithOrderedSet_range_copyItems_1 = _registerName1( "initWithOrderedSet:range:copyItems:", @@ -16023,28 +16030,28 @@ class PedometerBindings { return __objc_msgSend_453(obj, sel, other, options, block); } - late final __objc_msgSend_453Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_453 = - __objc_msgSend_453Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_453Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_453 = __objc_msgSend_453Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_differenceFromOrderedSet_withOptions_1 = _registerName1( "differenceFromOrderedSet:withOptions:", @@ -16058,26 +16065,26 @@ class PedometerBindings { return __objc_msgSend_454(obj, sel, other, options); } - late final __objc_msgSend_454Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_454 = - __objc_msgSend_454Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_454Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_454 = __objc_msgSend_454Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_differenceFromOrderedSet_1 = _registerName1( "differenceFromOrderedSet:", @@ -16093,24 +16100,24 @@ class PedometerBindings { return __objc_msgSend_455(obj, sel, difference); } - late final __objc_msgSend_455Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_455 = - __objc_msgSend_455Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_455Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_455 = __objc_msgSend_455Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_filteredOrderedSetUsingPredicate_1 = _registerName1( "filteredOrderedSetUsingPredicate:", @@ -16123,24 +16130,24 @@ class PedometerBindings { return __objc_msgSend_456(obj, sel, p); } - late final __objc_msgSend_456Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_456 = - __objc_msgSend_456Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_456Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_456 = __objc_msgSend_456Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addObjects_count_1 = _registerName1("addObjects:count:"); void _objc_msgSend_457( @@ -16152,26 +16159,26 @@ class PedometerBindings { return __objc_msgSend_457(obj, sel, objects, count); } - late final __objc_msgSend_457Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_457 = - __objc_msgSend_457Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - int, - ) - >(); + late final __objc_msgSend_457Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_457 = __objc_msgSend_457Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + int, + ) + >(); late final _sel_moveObjectsAtIndexes_toIndex_1 = _registerName1( "moveObjectsAtIndexes:toIndex:", @@ -16185,26 +16192,26 @@ class PedometerBindings { return __objc_msgSend_458(obj, sel, indexes, idx); } - late final __objc_msgSend_458Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_458 = - __objc_msgSend_458Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_458Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_458 = __objc_msgSend_458Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_setObject_atIndex_1 = _registerName1("setObject:atIndex:"); late final _sel_replaceObjectsInRange_withObjects_count_1 = _registerName1( @@ -16220,28 +16227,28 @@ class PedometerBindings { return __objc_msgSend_459(obj, sel, range, objects, count); } - late final __objc_msgSend_459Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer>, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_459 = - __objc_msgSend_459Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer>, - int, - ) - >(); + late final __objc_msgSend_459Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer>, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_459 = __objc_msgSend_459Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer>, + int, + ) + >(); late final _sel_intersectOrderedSet_1 = _registerName1( "intersectOrderedSet:", @@ -16254,24 +16261,24 @@ class PedometerBindings { return __objc_msgSend_460(obj, sel, other); } - late final __objc_msgSend_460Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_460 = - __objc_msgSend_460Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_460Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_460 = __objc_msgSend_460Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_minusOrderedSet_1 = _registerName1("minusOrderedSet:"); late final _sel_unionOrderedSet_1 = _registerName1("unionOrderedSet:"); @@ -16284,24 +16291,24 @@ class PedometerBindings { return __objc_msgSend_461(obj, sel, other); } - late final __objc_msgSend_461Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_461 = - __objc_msgSend_461Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_461Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_461 = __objc_msgSend_461Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_minusSet_1 = _registerName1("minusSet:"); late final _sel_unionSet_1 = _registerName1("unionSet:"); @@ -16318,28 +16325,28 @@ class PedometerBindings { return __objc_msgSend_462(obj, sel, range, opts, cmptr); } - late final __objc_msgSend_462Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_462 = - __objc_msgSend_462Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_462Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_462 = __objc_msgSend_462Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_orderedSetWithCapacity_1 = _registerName1( "orderedSetWithCapacity:", @@ -16355,24 +16362,24 @@ class PedometerBindings { return __objc_msgSend_463(obj, sel, key); } - late final __objc_msgSend_463Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_463 = - __objc_msgSend_463Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_463Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_463 = __objc_msgSend_463Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSMutableSet1 = _getClass1("NSMutableSet"); late final _sel_setSet_1 = _registerName1("setSet:"); @@ -16388,24 +16395,24 @@ class PedometerBindings { return __objc_msgSend_464(obj, sel, key); } - late final __objc_msgSend_464Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_464 = - __objc_msgSend_464Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_464Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_464 = __objc_msgSend_464Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_valueForKeyPath_1 = _registerName1("valueForKeyPath:"); late final _sel_setValue_forKeyPath_1 = _registerName1( @@ -16441,24 +16448,24 @@ class PedometerBindings { return __objc_msgSend_465(obj, sel, keys); } - late final __objc_msgSend_465Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_465 = - __objc_msgSend_465Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_465Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_465 = __objc_msgSend_465Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setValuesForKeysWithDictionary_1 = _registerName1( "setValuesForKeysWithDictionary:", @@ -16471,24 +16478,24 @@ class PedometerBindings { return __objc_msgSend_466(obj, sel, keyedValues); } - late final __objc_msgSend_466Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_466 = - __objc_msgSend_466Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_466Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_466 = __objc_msgSend_466Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_storedValueForKey_1 = _registerName1("storedValueForKey:"); late final _sel_takeStoredValue_forKey_1 = _registerName1( @@ -16524,30 +16531,30 @@ class PedometerBindings { return __objc_msgSend_467(obj, sel, keyPath, object, change, context); } - late final __objc_msgSend_467Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_467 = - __objc_msgSend_467Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_467Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_467 = __objc_msgSend_467Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_willChangeValueForKey_1 = _registerName1( "willChangeValueForKey:", @@ -16568,28 +16575,28 @@ class PedometerBindings { return __objc_msgSend_468(obj, sel, changeKind, indexes, key); } - late final __objc_msgSend_468Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_468 = - __objc_msgSend_468Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_468Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_468 = __objc_msgSend_468Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_didChange_valuesAtIndexes_forKey_1 = _registerName1( "didChange:valuesAtIndexes:forKey:", @@ -16606,28 +16613,28 @@ class PedometerBindings { return __objc_msgSend_469(obj, sel, key, mutationKind, objects); } - late final __objc_msgSend_469Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_469 = - __objc_msgSend_469Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_469Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_469 = __objc_msgSend_469Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_didChangeValueForKey_withSetMutation_usingObjects_1 = _registerName1("didChangeValueForKey:withSetMutation:usingObjects:"); @@ -16641,24 +16648,24 @@ class PedometerBindings { return __objc_msgSend_470(obj, sel, value); } - late final __objc_msgSend_470Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_470 = - __objc_msgSend_470Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_470Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_470 = __objc_msgSend_470Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_classForKeyedArchiver1 = _registerName1( "classForKeyedArchiver", @@ -16679,28 +16686,28 @@ class PedometerBindings { return __objc_msgSend_471(obj, sel, object, requiresSecureCoding, error); } - late final __objc_msgSend_471Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_471 = - __objc_msgSend_471Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_471Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_471 = __objc_msgSend_471Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer>, + ) + >(); late final _class_NSMutableData1 = _getClass1("NSMutableData"); late final _sel_mutableBytes1 = _registerName1("mutableBytes"); @@ -16713,20 +16720,20 @@ class PedometerBindings { return __objc_msgSend_472(obj, sel, value); } - late final __objc_msgSend_472Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_472 = - __objc_msgSend_472Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_472Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_472 = __objc_msgSend_472Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_appendBytes_length_1 = _registerName1("appendBytes:length:"); late final _sel_appendData_1 = _registerName1("appendData:"); @@ -16743,26 +16750,26 @@ class PedometerBindings { return __objc_msgSend_473(obj, sel, range, bytes); } - late final __objc_msgSend_473Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_473 = - __objc_msgSend_473Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_473Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_473 = __objc_msgSend_473Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_resetBytesInRange_1 = _registerName1("resetBytesInRange:"); late final _sel_setData_1 = _registerName1("setData:"); @@ -16785,28 +16792,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_474Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_474 = - __objc_msgSend_474Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_474Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_474 = __objc_msgSend_474Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + int, + ) + >(); late final _sel_dataWithCapacity_1 = _registerName1("dataWithCapacity:"); instancetype _objc_msgSend_475( @@ -16817,24 +16824,24 @@ class PedometerBindings { return __objc_msgSend_475(obj, sel, aNumItems); } - late final __objc_msgSend_475Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_475 = - __objc_msgSend_475Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_475Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_475 = __objc_msgSend_475Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_dataWithLength_1 = _registerName1("dataWithLength:"); late final _sel_initWithLength_1 = _registerName1("initWithLength:"); @@ -16850,26 +16857,26 @@ class PedometerBindings { return __objc_msgSend_476(obj, sel, algorithm, error); } - late final __objc_msgSend_476Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_476 = - __objc_msgSend_476Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_476Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_476 = __objc_msgSend_476Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_compressUsingAlgorithm_error_1 = _registerName1( "compressUsingAlgorithm:error:", @@ -16885,24 +16892,24 @@ class PedometerBindings { return __objc_msgSend_477(obj, sel, data); } - late final __objc_msgSend_477Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_477 = - __objc_msgSend_477Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_477Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_477 = __objc_msgSend_477Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_archivedDataWithRootObject_1 = _registerName1( "archivedDataWithRootObject:", @@ -16915,24 +16922,24 @@ class PedometerBindings { return __objc_msgSend_478(obj, sel, rootObject); } - late final __objc_msgSend_478Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_478 = - __objc_msgSend_478Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_478Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_478 = __objc_msgSend_478Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_archiveRootObject_toFile_1 = _registerName1( "archiveRootObject:toFile:", @@ -16942,16 +16949,16 @@ class PedometerBindings { return __objc_msgSend_479(obj, sel); } - late final __objc_msgSend_479Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_479 = - __objc_msgSend_479Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_479Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_479 = __objc_msgSend_479Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setOutputFormat_1 = _registerName1("setOutputFormat:"); void _objc_msgSend_480( @@ -16962,20 +16969,20 @@ class PedometerBindings { return __objc_msgSend_480(obj, sel, value); } - late final __objc_msgSend_480Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_480 = - __objc_msgSend_480Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_480Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_480 = __objc_msgSend_480Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_encodedData1 = _registerName1("encodedData"); late final _sel_finishEncoding1 = _registerName1("finishEncoding"); @@ -16991,26 +16998,26 @@ class PedometerBindings { return __objc_msgSend_481(obj, sel, codedName, cls); } - late final __objc_msgSend_481Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_481 = - __objc_msgSend_481Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_481Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_481 = __objc_msgSend_481Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_classNameForClass_1 = _registerName1("classNameForClass:"); ffi.Pointer _objc_msgSend_482( @@ -17021,24 +17028,24 @@ class PedometerBindings { return __objc_msgSend_482(obj, sel, cls); } - late final __objc_msgSend_482Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_482 = - __objc_msgSend_482Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_482Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_482 = __objc_msgSend_482Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setRequiresSecureCoding_1 = _registerName1( "setRequiresSecureCoding:", @@ -17051,16 +17058,20 @@ class PedometerBindings { return __objc_msgSend_483(obj, sel, value); } - late final __objc_msgSend_483Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function(ffi.Pointer, ffi.Pointer, ffi.Bool) - > - >('objc_msgSend'); - late final __objc_msgSend_483 = - __objc_msgSend_483Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, bool) - >(); + late final __objc_msgSend_483Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_483 = __objc_msgSend_483Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, bool) + >(); late final _sel_replacementObjectForKeyedArchiver_1 = _registerName1( "replacementObjectForKeyedArchiver:", @@ -17073,24 +17084,24 @@ class PedometerBindings { return __objc_msgSend_484(obj, sel, archiver); } - late final __objc_msgSend_484Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_484 = - __objc_msgSend_484Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_484Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_484 = __objc_msgSend_484Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_performSelectorOnMainThread_withObject_waitUntilDone_modes_1 = _registerName1( @@ -17107,30 +17118,30 @@ class PedometerBindings { return __objc_msgSend_485(obj, sel, aSelector, arg, wait, array); } - late final __objc_msgSend_485Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_485 = - __objc_msgSend_485Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_485Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_485 = __objc_msgSend_485Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_performSelectorOnMainThread_withObject_waitUntilDone_1 = _registerName1("performSelectorOnMainThread:withObject:waitUntilDone:"); @@ -17144,28 +17155,28 @@ class PedometerBindings { return __objc_msgSend_486(obj, sel, aSelector, arg, wait); } - late final __objc_msgSend_486Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_486 = - __objc_msgSend_486Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_486Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_486 = __objc_msgSend_486Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _class_NSThread1 = _getClass1("NSThread"); late final _sel_currentThread1 = _registerName1("currentThread"); @@ -17176,22 +17187,22 @@ class PedometerBindings { return __objc_msgSend_487(obj, sel); } - late final __objc_msgSend_487Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_487 = - __objc_msgSend_487Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_487Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_487 = __objc_msgSend_487Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_detachNewThreadWithBlock_1 = _registerName1( "detachNewThreadWithBlock:", @@ -17204,24 +17215,24 @@ class PedometerBindings { return __objc_msgSend_488(obj, sel, block); } - late final __objc_msgSend_488Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_488 = - __objc_msgSend_488Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_488Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_488 = __objc_msgSend_488Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_detachNewThreadSelector_toTarget_withObject_1 = _registerName1("detachNewThreadSelector:toTarget:withObject:"); @@ -17235,28 +17246,28 @@ class PedometerBindings { return __objc_msgSend_489(obj, sel, selector, target, argument); } - late final __objc_msgSend_489Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_489 = - __objc_msgSend_489Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_489Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_489 = __objc_msgSend_489Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isMultiThreaded1 = _registerName1("isMultiThreaded"); late final _class_NSMutableDictionary1 = _getClass1("NSMutableDictionary"); @@ -17271,26 +17282,26 @@ class PedometerBindings { return __objc_msgSend_490(obj, sel, anObject, aKey); } - late final __objc_msgSend_490Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_490 = - __objc_msgSend_490Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_490Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_490 = __objc_msgSend_490Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addEntriesFromDictionary_1 = _registerName1( "addEntriesFromDictionary:", @@ -17311,26 +17322,26 @@ class PedometerBindings { return __objc_msgSend_491(obj, sel, obj1, key); } - late final __objc_msgSend_491Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_491 = - __objc_msgSend_491Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_491Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_491 = __objc_msgSend_491Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dictionaryWithCapacity_1 = _registerName1( "dictionaryWithCapacity:", @@ -17343,24 +17354,24 @@ class PedometerBindings { return __objc_msgSend_492(obj, sel, path); } - late final __objc_msgSend_492Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_492 = - __objc_msgSend_492Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_492Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_492 = __objc_msgSend_492Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); ffi.Pointer _objc_msgSend_493( ffi.Pointer obj, @@ -17370,24 +17381,24 @@ class PedometerBindings { return __objc_msgSend_493(obj, sel, url); } - late final __objc_msgSend_493Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_493 = - __objc_msgSend_493Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_493Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_493 = __objc_msgSend_493Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dictionaryWithSharedKeySet_1 = _registerName1( "dictionaryWithSharedKeySet:", @@ -17400,24 +17411,24 @@ class PedometerBindings { return __objc_msgSend_494(obj, sel, keyset); } - late final __objc_msgSend_494Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_494 = - __objc_msgSend_494Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_494Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_494 = __objc_msgSend_494Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_threadDictionary1 = _registerName1("threadDictionary"); ffi.Pointer _objc_msgSend_495( @@ -17427,22 +17438,22 @@ class PedometerBindings { return __objc_msgSend_495(obj, sel); } - late final __objc_msgSend_495Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_495 = - __objc_msgSend_495Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_495Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_495 = __objc_msgSend_495Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sleepUntilDate_1 = _registerName1("sleepUntilDate:"); void _objc_msgSend_496( @@ -17453,24 +17464,24 @@ class PedometerBindings { return __objc_msgSend_496(obj, sel, date); } - late final __objc_msgSend_496Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_496 = - __objc_msgSend_496Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_496Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_496 = __objc_msgSend_496Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sleepForTimeInterval_1 = _registerName1( "sleepForTimeInterval:", @@ -17483,20 +17494,20 @@ class PedometerBindings { return __objc_msgSend_497(obj, sel, ti); } - late final __objc_msgSend_497Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_497 = - __objc_msgSend_497Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, double) - >(); + late final __objc_msgSend_497Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_497 = __objc_msgSend_497Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, double) + >(); late final _sel_exit1 = _registerName1("exit"); late final _sel_threadPriority1 = _registerName1("threadPriority"); @@ -17509,36 +17520,36 @@ class PedometerBindings { return __objc_msgSend_498(obj, sel, value); } - late final __objc_msgSend_498Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_498 = - __objc_msgSend_498Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, double) - >(); + late final __objc_msgSend_498Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_498 = __objc_msgSend_498Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, double) + >(); late final _sel_qualityOfService1 = _registerName1("qualityOfService"); int _objc_msgSend_499(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_499(obj, sel); } - late final __objc_msgSend_499Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_499 = - __objc_msgSend_499Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_499Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_499 = __objc_msgSend_499Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setQualityOfService_1 = _registerName1( "setQualityOfService:", @@ -17551,20 +17562,20 @@ class PedometerBindings { return __objc_msgSend_500(obj, sel, value); } - late final __objc_msgSend_500Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_500 = - __objc_msgSend_500Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_500Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_500 = __objc_msgSend_500Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_callStackReturnAddresses1 = _registerName1( "callStackReturnAddresses", @@ -17580,24 +17591,24 @@ class PedometerBindings { return __objc_msgSend_501(obj, sel, value); } - late final __objc_msgSend_501Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_501 = - __objc_msgSend_501Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_501Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_501 = __objc_msgSend_501Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stackSize1 = _registerName1("stackSize"); late final _sel_setStackSize_1 = _registerName1("setStackSize:"); @@ -17616,28 +17627,28 @@ class PedometerBindings { return __objc_msgSend_502(obj, sel, target, selector, argument); } - late final __objc_msgSend_502Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_502 = - __objc_msgSend_502Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_502Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_502 = __objc_msgSend_502Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithBlock_1 = _registerName1("initWithBlock:"); instancetype _objc_msgSend_503( @@ -17648,24 +17659,24 @@ class PedometerBindings { return __objc_msgSend_503(obj, sel, block); } - late final __objc_msgSend_503Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_503 = - __objc_msgSend_503Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_503Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_503 = __objc_msgSend_503Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_isExecuting1 = _registerName1("isExecuting"); late final _sel_isFinished1 = _registerName1("isFinished"); @@ -17689,32 +17700,32 @@ class PedometerBindings { return __objc_msgSend_504(obj, sel, aSelector, thr, arg, wait, array); } - late final __objc_msgSend_504Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_504 = - __objc_msgSend_504Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_504Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_504 = __objc_msgSend_504Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ffi.Pointer, + ) + >(); late final _sel_performSelector_onThread_withObject_waitUntilDone_1 = _registerName1("performSelector:onThread:withObject:waitUntilDone:"); @@ -17729,30 +17740,30 @@ class PedometerBindings { return __objc_msgSend_505(obj, sel, aSelector, thr, arg, wait); } - late final __objc_msgSend_505Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_505 = - __objc_msgSend_505Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_505Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_505 = __objc_msgSend_505Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_performSelectorInBackground_withObject_1 = _registerName1( "performSelectorInBackground:withObject:", @@ -17767,22 +17778,22 @@ class PedometerBindings { return __objc_msgSend_506(obj, sel); } - late final __objc_msgSend_506Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_506 = - __objc_msgSend_506Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_506Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_506 = __objc_msgSend_506Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_progressWithTotalUnitCount_1 = _registerName1( "progressWithTotalUnitCount:", @@ -17795,24 +17806,24 @@ class PedometerBindings { return __objc_msgSend_507(obj, sel, unitCount); } - late final __objc_msgSend_507Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_507 = - __objc_msgSend_507Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_507Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_507 = __objc_msgSend_507Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_discreteProgressWithTotalUnitCount_1 = _registerName1( "discreteProgressWithTotalUnitCount:", @@ -17835,28 +17846,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_508Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ffi.Pointer, - ffi.Int64, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_508 = - __objc_msgSend_508Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_508Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ffi.Pointer, + ffi.Int64, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_508 = __objc_msgSend_508Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithParent_userInfo_1 = _registerName1( "initWithParent:userInfo:", @@ -17870,26 +17881,26 @@ class PedometerBindings { return __objc_msgSend_509(obj, sel, parentProgressOrNil, userInfoOrNil); } - late final __objc_msgSend_509Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_509 = - __objc_msgSend_509Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_509Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_509 = __objc_msgSend_509Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_becomeCurrentWithPendingUnitCount_1 = _registerName1( "becomeCurrentWithPendingUnitCount:", @@ -17902,20 +17913,20 @@ class PedometerBindings { return __objc_msgSend_510(obj, sel, unitCount); } - late final __objc_msgSend_510Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_510 = - __objc_msgSend_510Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_510Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_510 = __objc_msgSend_510Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_performAsCurrentWithPendingUnitCount_usingBlock_1 = _registerName1("performAsCurrentWithPendingUnitCount:usingBlock:"); @@ -17928,26 +17939,26 @@ class PedometerBindings { return __objc_msgSend_511(obj, sel, unitCount, work); } - late final __objc_msgSend_511Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_511 = - __objc_msgSend_511Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_511Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_511 = __objc_msgSend_511Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_resignCurrent1 = _registerName1("resignCurrent"); late final _sel_addChild_withPendingUnitCount_1 = _registerName1( @@ -17962,42 +17973,42 @@ class PedometerBindings { return __objc_msgSend_512(obj, sel, child, inUnitCount); } - late final __objc_msgSend_512Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_512 = - __objc_msgSend_512Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_512Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_512 = __objc_msgSend_512Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_totalUnitCount1 = _registerName1("totalUnitCount"); int _objc_msgSend_513(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_513(obj, sel); } - late final __objc_msgSend_513Ptr = _lookup< - ffi.NativeFunction< - ffi.Int64 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_513 = - __objc_msgSend_513Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_513Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int64 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_513 = __objc_msgSend_513Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setTotalUnitCount_1 = _registerName1("setTotalUnitCount:"); void _objc_msgSend_514( @@ -18008,20 +18019,20 @@ class PedometerBindings { return __objc_msgSend_514(obj, sel, value); } - late final __objc_msgSend_514Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int64, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_514 = - __objc_msgSend_514Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_514Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int64, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_514 = __objc_msgSend_514Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_completedUnitCount1 = _registerName1("completedUnitCount"); late final _sel_setCompletedUnitCount_1 = _registerName1( @@ -18038,24 +18049,24 @@ class PedometerBindings { return __objc_msgSend_515(obj, sel, value); } - late final __objc_msgSend_515Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_515 = - __objc_msgSend_515Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_515Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_515 = __objc_msgSend_515Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedAdditionalDescription1 = _registerName1( "localizedAdditionalDescription", @@ -18076,22 +18087,22 @@ class PedometerBindings { return __objc_msgSend_516(obj, sel); } - late final __objc_msgSend_516Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_516 = - __objc_msgSend_516Ptr - .asFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_516Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_516 = __objc_msgSend_516Ptr + .asFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setCancellationHandler_1 = _registerName1( "setCancellationHandler:", @@ -18104,24 +18115,24 @@ class PedometerBindings { return __objc_msgSend_517(obj, sel, value); } - late final __objc_msgSend_517Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_517 = - __objc_msgSend_517Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_517Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_517 = __objc_msgSend_517Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_pausingHandler1 = _registerName1("pausingHandler"); late final _sel_setPausingHandler_1 = _registerName1("setPausingHandler:"); @@ -18150,24 +18161,24 @@ class PedometerBindings { return __objc_msgSend_518(obj, sel, value); } - late final __objc_msgSend_518Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_518 = - __objc_msgSend_518Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_518Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_518 = __objc_msgSend_518Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_throughput1 = _registerName1("throughput"); late final _sel_setThroughput_1 = _registerName1("setThroughput:"); @@ -18185,24 +18196,24 @@ class PedometerBindings { return __objc_msgSend_519(obj, sel, value); } - late final __objc_msgSend_519Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_519 = - __objc_msgSend_519Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_519Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_519 = __objc_msgSend_519Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileTotalCount1 = _registerName1("fileTotalCount"); late final _sel_setFileTotalCount_1 = _registerName1("setFileTotalCount:"); @@ -18223,26 +18234,26 @@ class PedometerBindings { return __objc_msgSend_520(obj, sel, url, publishingHandler); } - late final __objc_msgSend_520Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_520 = - __objc_msgSend_520Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_520Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_520 = __objc_msgSend_520Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_removeSubscriber_1 = _registerName1("removeSubscriber:"); late final _sel_isOld1 = _registerName1("isOld"); @@ -18266,28 +18277,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_521Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_521 = - __objc_msgSend_521Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_521Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_521 = __objc_msgSend_521Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_registerFileRepresentationForTypeIdentifier_fileOptions_visibility_loadHandler_1 = _registerName1( @@ -18311,30 +18322,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_522Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_522 = - __objc_msgSend_522Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_522Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_522 = __objc_msgSend_522Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_registeredTypeIdentifiers1 = _registerName1( "registeredTypeIdentifiers", @@ -18350,24 +18361,24 @@ class PedometerBindings { return __objc_msgSend_523(obj, sel, fileOptions); } - late final __objc_msgSend_523Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_523 = - __objc_msgSend_523Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_523Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_523 = __objc_msgSend_523Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_hasItemConformingToTypeIdentifier_1 = _registerName1( "hasItemConformingToTypeIdentifier:", @@ -18385,30 +18396,30 @@ class PedometerBindings { return __objc_msgSend_524(obj, sel, typeIdentifier, fileOptions); } - late final __objc_msgSend_524Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_524 = - __objc_msgSend_524Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); - - late final _sel_loadDataRepresentationForTypeIdentifier_completionHandler_1 = - _registerName1( - "loadDataRepresentationForTypeIdentifier:completionHandler:", + late final __objc_msgSend_524Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_524 = __objc_msgSend_524Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); + + late final _sel_loadDataRepresentationForTypeIdentifier_completionHandler_1 = + _registerName1( + "loadDataRepresentationForTypeIdentifier:completionHandler:", ); ffi.Pointer _objc_msgSend_525( ffi.Pointer obj, @@ -18419,26 +18430,26 @@ class PedometerBindings { return __objc_msgSend_525(obj, sel, typeIdentifier, completionHandler); } - late final __objc_msgSend_525Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_525 = - __objc_msgSend_525Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_525Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_525 = __objc_msgSend_525Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_loadFileRepresentationForTypeIdentifier_completionHandler_1 = _registerName1( @@ -18453,26 +18464,26 @@ class PedometerBindings { return __objc_msgSend_526(obj, sel, typeIdentifier, completionHandler); } - late final __objc_msgSend_526Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_526 = - __objc_msgSend_526Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_526Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_526 = __objc_msgSend_526Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_loadInPlaceFileRepresentationForTypeIdentifier_completionHandler_1 = _registerName1( @@ -18487,26 +18498,26 @@ class PedometerBindings { return __objc_msgSend_527(obj, sel, typeIdentifier, completionHandler); } - late final __objc_msgSend_527Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_527 = - __objc_msgSend_527Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_527Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_527 = __objc_msgSend_527Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_suggestedName1 = _registerName1("suggestedName"); late final _sel_setSuggestedName_1 = _registerName1("setSuggestedName:"); @@ -18522,26 +18533,26 @@ class PedometerBindings { return __objc_msgSend_528(obj, sel, object, visibility); } - late final __objc_msgSend_528Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_528 = - __objc_msgSend_528Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_528Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_528 = __objc_msgSend_528Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_registerObjectOfClass_visibility_loadHandler_1 = _registerName1("registerObjectOfClass:visibility:loadHandler:"); @@ -18555,28 +18566,28 @@ class PedometerBindings { return __objc_msgSend_529(obj, sel, aClass, visibility, loadHandler); } - late final __objc_msgSend_529Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_529 = - __objc_msgSend_529Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_529Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_529 = __objc_msgSend_529Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_canLoadObjectOfClass_1 = _registerName1( "canLoadObjectOfClass:", @@ -18593,26 +18604,26 @@ class PedometerBindings { return __objc_msgSend_530(obj, sel, aClass, completionHandler); } - late final __objc_msgSend_530Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_530 = - __objc_msgSend_530Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_530Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_530 = __objc_msgSend_530Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_initWithItem_typeIdentifier_1 = _registerName1( "initWithItem:typeIdentifier:", @@ -18626,26 +18637,26 @@ class PedometerBindings { return __objc_msgSend_531(obj, sel, item, typeIdentifier); } - late final __objc_msgSend_531Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_531 = - __objc_msgSend_531Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_531Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_531 = __objc_msgSend_531Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_registerItemForTypeIdentifier_loadHandler_1 = _registerName1( "registerItemForTypeIdentifier:loadHandler:", @@ -18659,26 +18670,26 @@ class PedometerBindings { return __objc_msgSend_532(obj, sel, typeIdentifier, loadHandler); } - late final __objc_msgSend_532Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_532 = - __objc_msgSend_532Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_532Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_532 = __objc_msgSend_532Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_loadItemForTypeIdentifier_options_completionHandler_1 = _registerName1("loadItemForTypeIdentifier:options:completionHandler:"); @@ -18698,28 +18709,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_533Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_533 = - __objc_msgSend_533Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_533Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_533 = __objc_msgSend_533Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_previewImageHandler1 = _registerName1("previewImageHandler"); ffi.Pointer<_ObjCBlock> _objc_msgSend_534( @@ -18729,22 +18740,22 @@ class PedometerBindings { return __objc_msgSend_534(obj, sel); } - late final __objc_msgSend_534Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_534 = - __objc_msgSend_534Ptr - .asFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_534Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_534 = __objc_msgSend_534Ptr + .asFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setPreviewImageHandler_1 = _registerName1( "setPreviewImageHandler:", @@ -18757,24 +18768,24 @@ class PedometerBindings { return __objc_msgSend_535(obj, sel, value); } - late final __objc_msgSend_535Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_535 = - __objc_msgSend_535Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_535Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_535 = __objc_msgSend_535Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_loadPreviewImageWithOptions_completionHandler_1 = _registerName1("loadPreviewImageWithOptions:completionHandler:"); @@ -18787,26 +18798,26 @@ class PedometerBindings { return __objc_msgSend_536(obj, sel, options, completionHandler); } - late final __objc_msgSend_536Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_536 = - __objc_msgSend_536Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_536Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_536 = __objc_msgSend_536Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _class_NSMutableString1 = _getClass1("NSMutableString"); late final _sel_replaceCharactersInRange_withString_1 = _registerName1( @@ -18821,26 +18832,26 @@ class PedometerBindings { return __objc_msgSend_537(obj, sel, range, aString); } - late final __objc_msgSend_537Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_537 = - __objc_msgSend_537Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_537Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_537 = __objc_msgSend_537Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_insertString_atIndex_1 = _registerName1( "insertString:atIndex:", @@ -18854,26 +18865,26 @@ class PedometerBindings { return __objc_msgSend_538(obj, sel, aString, loc); } - late final __objc_msgSend_538Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_538 = - __objc_msgSend_538Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_538Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_538 = __objc_msgSend_538Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_deleteCharactersInRange_1 = _registerName1( "deleteCharactersInRange:", @@ -18901,30 +18912,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_539Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_539 = - __objc_msgSend_539Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_539Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_539 = __objc_msgSend_539Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_applyTransform_reverse_range_updatedRange_1 = _registerName1( "applyTransform:reverse:range:updatedRange:", @@ -18947,30 +18958,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_540Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - _NSRange, - ffi.Pointer<_NSRange>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_540 = - __objc_msgSend_540Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - _NSRange, - ffi.Pointer<_NSRange>, - ) - >(); + late final __objc_msgSend_540Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + _NSRange, + ffi.Pointer<_NSRange>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_540 = __objc_msgSend_540Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + _NSRange, + ffi.Pointer<_NSRange>, + ) + >(); ffi.Pointer _objc_msgSend_541( ffi.Pointer obj, @@ -18980,24 +18991,24 @@ class PedometerBindings { return __objc_msgSend_541(obj, sel, capacity); } - late final __objc_msgSend_541Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_541 = - __objc_msgSend_541Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_541Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_541 = __objc_msgSend_541Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_stringWithCapacity_1 = _registerName1("stringWithCapacity:"); late final _class_NSNotification1 = _getClass1("NSNotification"); @@ -19015,28 +19026,28 @@ class PedometerBindings { return __objc_msgSend_542(obj, sel, name, object, userInfo); } - late final __objc_msgSend_542Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_542 = - __objc_msgSend_542Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_542Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_542 = __objc_msgSend_542Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_notificationWithName_object_1 = _registerName1( "notificationWithName:object:", @@ -19053,22 +19064,22 @@ class PedometerBindings { return __objc_msgSend_543(obj, sel); } - late final __objc_msgSend_543Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_543 = - __objc_msgSend_543Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_543Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_543 = __objc_msgSend_543Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_bundleWithPath_1 = _registerName1("bundleWithPath:"); late final _sel_initWithPath_1 = _registerName1("initWithPath:"); @@ -19083,24 +19094,24 @@ class PedometerBindings { return __objc_msgSend_544(obj, sel, aClass); } - late final __objc_msgSend_544Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_544 = - __objc_msgSend_544Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_544Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_544 = __objc_msgSend_544Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_bundleWithIdentifier_1 = _registerName1( "bundleWithIdentifier:", @@ -19113,24 +19124,24 @@ class PedometerBindings { return __objc_msgSend_545(obj, sel, identifier); } - late final __objc_msgSend_545Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_545 = - __objc_msgSend_545Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_545Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_545 = __objc_msgSend_545Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_allBundles1 = _registerName1("allBundles"); late final _sel_allFrameworks1 = _registerName1("allFrameworks"); @@ -19182,30 +19193,30 @@ class PedometerBindings { return __objc_msgSend_546(obj, sel, name, ext, subpath, bundleURL); } - late final __objc_msgSend_546Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_546 = - __objc_msgSend_546Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_546Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_546 = __objc_msgSend_546Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLsForResourcesWithExtension_subdirectory_inBundleWithURL_1 = _registerName1( @@ -19221,28 +19232,28 @@ class PedometerBindings { return __objc_msgSend_547(obj, sel, ext, subpath, bundleURL); } - late final __objc_msgSend_547Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_547 = - __objc_msgSend_547Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_547Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_547 = __objc_msgSend_547Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLForResource_withExtension_1 = _registerName1( "URLForResource:withExtension:", @@ -19256,26 +19267,26 @@ class PedometerBindings { return __objc_msgSend_548(obj, sel, name, ext); } - late final __objc_msgSend_548Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_548 = - __objc_msgSend_548Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_548Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_548 = __objc_msgSend_548Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLForResource_withExtension_subdirectory_1 = _registerName1( "URLForResource:withExtension:subdirectory:", @@ -19290,28 +19301,28 @@ class PedometerBindings { return __objc_msgSend_549(obj, sel, name, ext, subpath); } - late final __objc_msgSend_549Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_549 = - __objc_msgSend_549Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_549Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_549 = __objc_msgSend_549Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLForResource_withExtension_subdirectory_localization_1 = _registerName1("URLForResource:withExtension:subdirectory:localization:"); @@ -19326,30 +19337,30 @@ class PedometerBindings { return __objc_msgSend_550(obj, sel, name, ext, subpath, localizationName); } - late final __objc_msgSend_550Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_550 = - __objc_msgSend_550Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_550Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_550 = __objc_msgSend_550Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLsForResourcesWithExtension_subdirectory_1 = _registerName1( "URLsForResourcesWithExtension:subdirectory:", @@ -19363,26 +19374,26 @@ class PedometerBindings { return __objc_msgSend_551(obj, sel, ext, subpath); } - late final __objc_msgSend_551Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_551 = - __objc_msgSend_551Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_551Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_551 = __objc_msgSend_551Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLsForResourcesWithExtension_subdirectory_localization_1 = _registerName1( @@ -19398,28 +19409,28 @@ class PedometerBindings { return __objc_msgSend_552(obj, sel, ext, subpath, localizationName); } - late final __objc_msgSend_552Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_552 = - __objc_msgSend_552Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_552Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_552 = __objc_msgSend_552Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pathForResource_ofType_inDirectory_1 = _registerName1( "pathForResource:ofType:inDirectory:", @@ -19434,28 +19445,28 @@ class PedometerBindings { return __objc_msgSend_553(obj, sel, name, ext, bundlePath); } - late final __objc_msgSend_553Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_553 = - __objc_msgSend_553Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_553Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_553 = __objc_msgSend_553Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pathsForResourcesOfType_inDirectory_1 = _registerName1( "pathsForResourcesOfType:inDirectory:", @@ -19469,26 +19480,26 @@ class PedometerBindings { return __objc_msgSend_554(obj, sel, ext, bundlePath); } - late final __objc_msgSend_554Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_554 = - __objc_msgSend_554Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_554Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_554 = __objc_msgSend_554Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pathForResource_ofType_1 = _registerName1( "pathForResource:ofType:", @@ -19502,26 +19513,26 @@ class PedometerBindings { return __objc_msgSend_555(obj, sel, name, ext); } - late final __objc_msgSend_555Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_555 = - __objc_msgSend_555Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_555Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_555 = __objc_msgSend_555Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pathForResource_ofType_inDirectory_forLocalization_1 = _registerName1("pathForResource:ofType:inDirectory:forLocalization:"); @@ -19536,30 +19547,30 @@ class PedometerBindings { return __objc_msgSend_556(obj, sel, name, ext, subpath, localizationName); } - late final __objc_msgSend_556Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_556 = - __objc_msgSend_556Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_556Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_556 = __objc_msgSend_556Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pathsForResourcesOfType_inDirectory_forLocalization_1 = _registerName1("pathsForResourcesOfType:inDirectory:forLocalization:"); @@ -19573,28 +19584,28 @@ class PedometerBindings { return __objc_msgSend_557(obj, sel, ext, subpath, localizationName); } - late final __objc_msgSend_557Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_557 = - __objc_msgSend_557Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_557Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_557 = __objc_msgSend_557Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedStringForKey_value_table_1 = _registerName1( "localizedStringForKey:value:table:", @@ -19609,28 +19620,28 @@ class PedometerBindings { return __objc_msgSend_558(obj, sel, key, value, tableName); } - late final __objc_msgSend_558Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_558 = - __objc_msgSend_558Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_558Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_558 = __objc_msgSend_558Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSAttributedString1 = _getClass1("NSAttributedString"); late final _sel_attributesAtIndex_effectiveRange_1 = _registerName1( @@ -19645,26 +19656,26 @@ class PedometerBindings { return __objc_msgSend_559(obj, sel, location, range); } - late final __objc_msgSend_559Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_NSRange>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_559 = - __objc_msgSend_559Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_NSRange>, - ) - >(); + late final __objc_msgSend_559Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_NSRange>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_559 = __objc_msgSend_559Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_NSRange>, + ) + >(); late final _sel_attribute_atIndex_effectiveRange_1 = _registerName1( "attribute:atIndex:effectiveRange:", @@ -19679,28 +19690,28 @@ class PedometerBindings { return __objc_msgSend_560(obj, sel, attrName, location, range); } - late final __objc_msgSend_560Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_NSRange>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_560 = - __objc_msgSend_560Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_NSRange>, - ) - >(); + late final __objc_msgSend_560Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_NSRange>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_560 = __objc_msgSend_560Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_NSRange>, + ) + >(); late final _sel_attributedSubstringFromRange_1 = _registerName1( "attributedSubstringFromRange:", @@ -19713,24 +19724,24 @@ class PedometerBindings { return __objc_msgSend_561(obj, sel, range); } - late final __objc_msgSend_561Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_561 = - __objc_msgSend_561Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_561Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_561 = __objc_msgSend_561Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_attributesAtIndex_longestEffectiveRange_inRange_1 = _registerName1("attributesAtIndex:longestEffectiveRange:inRange:"); @@ -19744,28 +19755,28 @@ class PedometerBindings { return __objc_msgSend_562(obj, sel, location, range, rangeLimit); } - late final __objc_msgSend_562Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_NSRange>, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_562 = - __objc_msgSend_562Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_NSRange>, - _NSRange, - ) - >(); + late final __objc_msgSend_562Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_NSRange>, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_562 = __objc_msgSend_562Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_NSRange>, + _NSRange, + ) + >(); late final _sel_attribute_atIndex_longestEffectiveRange_inRange_1 = _registerName1("attribute:atIndex:longestEffectiveRange:inRange:"); @@ -19780,30 +19791,30 @@ class PedometerBindings { return __objc_msgSend_563(obj, sel, attrName, location, range, rangeLimit); } - late final __objc_msgSend_563Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer<_NSRange>, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_563 = - __objc_msgSend_563Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_NSRange>, - _NSRange, - ) - >(); + late final __objc_msgSend_563Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer<_NSRange>, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_563 = __objc_msgSend_563Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_NSRange>, + _NSRange, + ) + >(); late final _sel_isEqualToAttributedString_1 = _registerName1( "isEqualToAttributedString:", @@ -19816,24 +19827,24 @@ class PedometerBindings { return __objc_msgSend_564(obj, sel, other); } - late final __objc_msgSend_564Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_564 = - __objc_msgSend_564Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_564Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_564 = __objc_msgSend_564Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithString_attributes_1 = _registerName1( "initWithString:attributes:", @@ -19847,26 +19858,26 @@ class PedometerBindings { return __objc_msgSend_565(obj, sel, str, attrs); } - late final __objc_msgSend_565Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_565 = - __objc_msgSend_565Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_565Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_565 = __objc_msgSend_565Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithAttributedString_1 = _registerName1( "initWithAttributedString:", @@ -19879,24 +19890,24 @@ class PedometerBindings { return __objc_msgSend_566(obj, sel, attrStr); } - late final __objc_msgSend_566Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_566 = - __objc_msgSend_566Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_566Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_566 = __objc_msgSend_566Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_enumerateAttributesInRange_options_usingBlock_1 = _registerName1("enumerateAttributesInRange:options:usingBlock:"); @@ -19910,28 +19921,28 @@ class PedometerBindings { return __objc_msgSend_567(obj, sel, enumerationRange, opts, block); } - late final __objc_msgSend_567Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_567 = - __objc_msgSend_567Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_567Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_567 = __objc_msgSend_567Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_enumerateAttribute_inRange_options_usingBlock_1 = _registerName1("enumerateAttribute:inRange:options:usingBlock:"); @@ -19953,30 +19964,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_568Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_568 = - __objc_msgSend_568Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_568Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_568 = __objc_msgSend_568Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _class_NSAttributedStringMarkdownParsingOptions1 = _getClass1( "NSAttributedStringMarkdownParsingOptions", @@ -19992,16 +20003,16 @@ class PedometerBindings { return __objc_msgSend_569(obj, sel); } - late final __objc_msgSend_569Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_569 = - __objc_msgSend_569Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_569Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_569 = __objc_msgSend_569Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setInterpretedSyntax_1 = _registerName1( "setInterpretedSyntax:", @@ -20014,36 +20025,36 @@ class PedometerBindings { return __objc_msgSend_570(obj, sel, value); } - late final __objc_msgSend_570Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_570 = - __objc_msgSend_570Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_570Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_570 = __objc_msgSend_570Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_failurePolicy1 = _registerName1("failurePolicy"); int _objc_msgSend_571(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_571(obj, sel); } - late final __objc_msgSend_571Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_571 = - __objc_msgSend_571Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_571Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_571 = __objc_msgSend_571Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setFailurePolicy_1 = _registerName1("setFailurePolicy:"); void _objc_msgSend_572( @@ -20054,20 +20065,20 @@ class PedometerBindings { return __objc_msgSend_572(obj, sel, value); } - late final __objc_msgSend_572Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_572 = - __objc_msgSend_572Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_572Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_572 = __objc_msgSend_572Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_setLanguageCode_1 = _registerName1("setLanguageCode:"); late final _sel_appliesSourcePositionAttributes1 = _registerName1( @@ -20091,30 +20102,30 @@ class PedometerBindings { return __objc_msgSend_573(obj, sel, markdownFile, options, baseURL, error); } - late final __objc_msgSend_573Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_573 = - __objc_msgSend_573Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_573Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_573 = __objc_msgSend_573Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithMarkdown_options_baseURL_error_1 = _registerName1( "initWithMarkdown:options:baseURL:error:", @@ -20130,30 +20141,30 @@ class PedometerBindings { return __objc_msgSend_574(obj, sel, markdown, options, baseURL, error); } - late final __objc_msgSend_574Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_574 = - __objc_msgSend_574Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_574Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_574 = __objc_msgSend_574Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithMarkdownString_options_baseURL_error_1 = _registerName1("initWithMarkdownString:options:baseURL:error:"); @@ -20175,30 +20186,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_575Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_575 = - __objc_msgSend_575Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_575Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_575 = __objc_msgSend_575Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_initWithFormat_options_locale_1 = _registerName1( "initWithFormat:options:locale:", @@ -20213,28 +20224,28 @@ class PedometerBindings { return __objc_msgSend_576(obj, sel, format, options, locale); } - late final __objc_msgSend_576Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_576 = - __objc_msgSend_576Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_576Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_576 = __objc_msgSend_576Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_initWithFormat_options_locale_arguments_1 = _registerName1( "initWithFormat:options:locale:arguments:", @@ -20250,30 +20261,30 @@ class PedometerBindings { return __objc_msgSend_577(obj, sel, format, options, locale, arguments); } - late final __objc_msgSend_577Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_577 = - __objc_msgSend_577Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_577Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_577 = __objc_msgSend_577Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedAttributedStringWithFormat_1 = _registerName1( "localizedAttributedStringWithFormat:", @@ -20289,26 +20300,26 @@ class PedometerBindings { return __objc_msgSend_578(obj, sel, format, options); } - late final __objc_msgSend_578Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_578 = - __objc_msgSend_578Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_578Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_578 = __objc_msgSend_578Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithFormat_options_locale_context_1 = _registerName1( "initWithFormat:options:locale:context:", @@ -20324,30 +20335,30 @@ class PedometerBindings { return __objc_msgSend_579(obj, sel, format, options, locale, context); } - late final __objc_msgSend_579Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_579 = - __objc_msgSend_579Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_579Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_579 = __objc_msgSend_579Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithFormat_options_locale_context_arguments_1 = _registerName1("initWithFormat:options:locale:context:arguments:"); @@ -20371,32 +20382,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_580Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_580 = - __objc_msgSend_580Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_580Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_580 = __objc_msgSend_580Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedAttributedStringWithFormat_context_1 = _registerName1("localizedAttributedStringWithFormat:context:"); @@ -20409,26 +20420,26 @@ class PedometerBindings { return __objc_msgSend_581(obj, sel, format, context); } - late final __objc_msgSend_581Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_581 = - __objc_msgSend_581Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_581Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_581 = __objc_msgSend_581Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedAttributedStringWithFormat_options_context_1 = _registerName1("localizedAttributedStringWithFormat:options:context:"); @@ -20442,28 +20453,28 @@ class PedometerBindings { return __objc_msgSend_582(obj, sel, format, options, context); } - late final __objc_msgSend_582Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_582 = - __objc_msgSend_582Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_582Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_582 = __objc_msgSend_582Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_attributedStringByInflectingString1 = _registerName1( "attributedStringByInflectingString", @@ -20475,22 +20486,22 @@ class PedometerBindings { return __objc_msgSend_583(obj, sel); } - late final __objc_msgSend_583Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_583 = - __objc_msgSend_583Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_583Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_583 = __objc_msgSend_583Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedAttributedStringForKey_value_table_1 = _registerName1("localizedAttributedStringForKey:value:table:"); @@ -20504,28 +20515,28 @@ class PedometerBindings { return __objc_msgSend_584(obj, sel, key, value, tableName); } - late final __objc_msgSend_584Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_584 = - __objc_msgSend_584Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_584Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_584 = __objc_msgSend_584Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_bundleIdentifier1 = _registerName1("bundleIdentifier"); late final _sel_infoDictionary1 = _registerName1("infoDictionary"); @@ -20558,26 +20569,26 @@ class PedometerBindings { return __objc_msgSend_585(obj, sel, localizationsArray, preferencesArray); } - late final __objc_msgSend_585Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_585 = - __objc_msgSend_585Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_585Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_585 = __objc_msgSend_585Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_executableArchitectures1 = _registerName1( "executableArchitectures", @@ -20594,26 +20605,26 @@ class PedometerBindings { return __objc_msgSend_586(obj, sel, priority, tags); } - late final __objc_msgSend_586Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_586 = - __objc_msgSend_586Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_586Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_586 = __objc_msgSend_586Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ) + >(); late final _sel_preservationPriorityForTag_1 = _registerName1( "preservationPriorityForTag:", @@ -20633,26 +20644,26 @@ class PedometerBindings { return __objc_msgSend_587(obj, sel, attrs, range); } - late final __objc_msgSend_587Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_587 = - __objc_msgSend_587Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_587Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_587 = __objc_msgSend_587Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_mutableString1 = _registerName1("mutableString"); ffi.Pointer _objc_msgSend_588( @@ -20662,22 +20673,22 @@ class PedometerBindings { return __objc_msgSend_588(obj, sel); } - late final __objc_msgSend_588Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_588 = - __objc_msgSend_588Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_588Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_588 = __objc_msgSend_588Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addAttribute_value_range_1 = _registerName1( "addAttribute:value:range:", @@ -20692,28 +20703,28 @@ class PedometerBindings { return __objc_msgSend_589(obj, sel, name, value, range); } - late final __objc_msgSend_589Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_589 = - __objc_msgSend_589Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_589Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_589 = __objc_msgSend_589Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_addAttributes_range_1 = _registerName1( "addAttributes:range:", @@ -20727,26 +20738,26 @@ class PedometerBindings { return __objc_msgSend_590(obj, sel, attrs, range); } - late final __objc_msgSend_590Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_590 = - __objc_msgSend_590Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_590Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_590 = __objc_msgSend_590Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_removeAttribute_range_1 = _registerName1( "removeAttribute:range:", @@ -20760,26 +20771,26 @@ class PedometerBindings { return __objc_msgSend_591(obj, sel, name, range); } - late final __objc_msgSend_591Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_591 = - __objc_msgSend_591Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_591Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_591 = __objc_msgSend_591Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_replaceCharactersInRange_withAttributedString_1 = _registerName1("replaceCharactersInRange:withAttributedString:"); @@ -20792,26 +20803,26 @@ class PedometerBindings { return __objc_msgSend_592(obj, sel, range, attrString); } - late final __objc_msgSend_592Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_592 = - __objc_msgSend_592Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_592Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_592 = __objc_msgSend_592Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_insertAttributedString_atIndex_1 = _registerName1( "insertAttributedString:atIndex:", @@ -20825,26 +20836,26 @@ class PedometerBindings { return __objc_msgSend_593(obj, sel, attrString, loc); } - late final __objc_msgSend_593Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_593 = - __objc_msgSend_593Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_593Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_593 = __objc_msgSend_593Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_appendAttributedString_1 = _registerName1( "appendAttributedString:", @@ -20857,24 +20868,24 @@ class PedometerBindings { return __objc_msgSend_594(obj, sel, attrString); } - late final __objc_msgSend_594Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_594 = - __objc_msgSend_594Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_594Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_594 = __objc_msgSend_594Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setAttributedString_1 = _registerName1( "setAttributedString:", @@ -20897,24 +20908,24 @@ class PedometerBindings { return __objc_msgSend_595(obj, sel, obj1); } - late final __objc_msgSend_595Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_595 = - __objc_msgSend_595Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_595Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_595 = __objc_msgSend_595Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_attributedStringForObjectValue_withDefaultAttributes_1 = _registerName1("attributedStringForObjectValue:withDefaultAttributes:"); @@ -20927,26 +20938,26 @@ class PedometerBindings { return __objc_msgSend_596(obj, sel, obj1, attrs); } - late final __objc_msgSend_596Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_596 = - __objc_msgSend_596Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_596Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_596 = __objc_msgSend_596Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_editingStringForObjectValue_1 = _registerName1( "editingStringForObjectValue:", @@ -20964,28 +20975,28 @@ class PedometerBindings { return __objc_msgSend_597(obj, sel, obj1, string, error); } - late final __objc_msgSend_597Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_597 = - __objc_msgSend_597Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_597Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_597 = __objc_msgSend_597Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_isPartialStringValid_newEditingString_errorDescription_1 = _registerName1("isPartialStringValid:newEditingString:errorDescription:"); @@ -20999,36 +21010,36 @@ class PedometerBindings { return __objc_msgSend_598(obj, sel, partialString, newString, error); } - late final __objc_msgSend_598Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_598 = - __objc_msgSend_598Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); - - late final _sel_isPartialStringValid_proposedSelectedRange_originalString_originalSelectedRange_errorDescription_1 = - _registerName1( - "isPartialStringValid:proposedSelectedRange:originalString:originalSelectedRange:errorDescription:", - ); - bool _objc_msgSend_599( - ffi.Pointer obj, - ffi.Pointer sel, + late final __objc_msgSend_598Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_598 = __objc_msgSend_598Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); + + late final _sel_isPartialStringValid_proposedSelectedRange_originalString_originalSelectedRange_errorDescription_1 = + _registerName1( + "isPartialStringValid:proposedSelectedRange:originalString:originalSelectedRange:errorDescription:", + ); + bool _objc_msgSend_599( + ffi.Pointer obj, + ffi.Pointer sel, ffi.Pointer> partialStringPtr, ffi.Pointer<_NSRange> proposedSelRangePtr, ffi.Pointer origString, @@ -21046,48 +21057,48 @@ class PedometerBindings { ); } - late final __objc_msgSend_599Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer<_NSRange>, - ffi.Pointer, - _NSRange, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_599 = - __objc_msgSend_599Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer<_NSRange>, - ffi.Pointer, - _NSRange, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_599Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer<_NSRange>, + ffi.Pointer, + _NSRange, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_599 = __objc_msgSend_599Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer<_NSRange>, + ffi.Pointer, + _NSRange, + ffi.Pointer>, + ) + >(); late final _sel_formattingContext1 = _registerName1("formattingContext"); int _objc_msgSend_600(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_600(obj, sel); } - late final __objc_msgSend_600Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_600 = - __objc_msgSend_600Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_600Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_600 = __objc_msgSend_600Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setFormattingContext_1 = _registerName1( "setFormattingContext:", @@ -21100,20 +21111,20 @@ class PedometerBindings { return __objc_msgSend_601(obj, sel, value); } - late final __objc_msgSend_601Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_601 = - __objc_msgSend_601Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_601Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_601 = __objc_msgSend_601Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_getObjectValue_forString_range_error_1 = _registerName1( "getObjectValue:forString:range:error:", @@ -21129,30 +21140,30 @@ class PedometerBindings { return __objc_msgSend_602(obj, sel, obj1, string, rangep, error); } - late final __objc_msgSend_602Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer<_NSRange>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_602 = - __objc_msgSend_602Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer<_NSRange>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_602Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer<_NSRange>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_602 = __objc_msgSend_602Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer<_NSRange>, + ffi.Pointer>, + ) + >(); late final _sel_stringFromDate_1 = _registerName1("stringFromDate:"); ffi.Pointer _objc_msgSend_603( @@ -21163,24 +21174,24 @@ class PedometerBindings { return __objc_msgSend_603(obj, sel, date); } - late final __objc_msgSend_603Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_603 = - __objc_msgSend_603Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_603Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_603 = __objc_msgSend_603Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dateFromString_1 = _registerName1("dateFromString:"); ffi.Pointer _objc_msgSend_604( @@ -21191,24 +21202,24 @@ class PedometerBindings { return __objc_msgSend_604(obj, sel, string); } - late final __objc_msgSend_604Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_604 = - __objc_msgSend_604Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_604Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_604 = __objc_msgSend_604Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedStringFromDate_dateStyle_timeStyle_1 = _registerName1("localizedStringFromDate:dateStyle:timeStyle:"); @@ -21222,28 +21233,28 @@ class PedometerBindings { return __objc_msgSend_605(obj, sel, date, dstyle, tstyle); } - late final __objc_msgSend_605Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_605 = - __objc_msgSend_605Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_605Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_605 = __objc_msgSend_605Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ) + >(); late final _sel_dateFormatFromTemplate_options_locale_1 = _registerName1( "dateFormatFromTemplate:options:locale:", @@ -21258,28 +21269,28 @@ class PedometerBindings { return __objc_msgSend_606(obj, sel, tmplate, opts, locale); } - late final __objc_msgSend_606Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_606 = - __objc_msgSend_606Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_606Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_606 = __objc_msgSend_606Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_defaultFormatterBehavior1 = _registerName1( "defaultFormatterBehavior", @@ -21288,16 +21299,16 @@ class PedometerBindings { return __objc_msgSend_607(obj, sel); } - late final __objc_msgSend_607Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_607 = - __objc_msgSend_607Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_607Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_607 = __objc_msgSend_607Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setDefaultFormatterBehavior_1 = _registerName1( "setDefaultFormatterBehavior:", @@ -21310,20 +21321,20 @@ class PedometerBindings { return __objc_msgSend_608(obj, sel, value); } - late final __objc_msgSend_608Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_608 = - __objc_msgSend_608Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_608Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_608 = __objc_msgSend_608Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_setLocalizedDateFormatFromTemplate_1 = _registerName1( "setLocalizedDateFormatFromTemplate:", @@ -21335,16 +21346,16 @@ class PedometerBindings { return __objc_msgSend_609(obj, sel); } - late final __objc_msgSend_609Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_609 = - __objc_msgSend_609Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_609Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_609 = __objc_msgSend_609Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setDateStyle_1 = _registerName1("setDateStyle:"); void _objc_msgSend_610( @@ -21355,20 +21366,20 @@ class PedometerBindings { return __objc_msgSend_610(obj, sel, value); } - late final __objc_msgSend_610Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_610 = - __objc_msgSend_610Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_610Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_610 = __objc_msgSend_610Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_timeStyle1 = _registerName1("timeStyle"); late final _sel_setTimeStyle_1 = _registerName1("setTimeStyle:"); @@ -21382,24 +21393,24 @@ class PedometerBindings { return __objc_msgSend_611(obj, sel, value); } - late final __objc_msgSend_611Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_611 = - __objc_msgSend_611Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_611Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_611 = __objc_msgSend_611Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_generatesCalendarDates1 = _registerName1( "generatesCalendarDates", @@ -21423,24 +21434,24 @@ class PedometerBindings { return __objc_msgSend_612(obj, sel, aDate); } - late final __objc_msgSend_612Ptr = _lookup< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_612 = - __objc_msgSend_612Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_612Ptr = + _lookup< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_612 = __objc_msgSend_612Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_abbreviationForDate_1 = _registerName1( "abbreviationForDate:", @@ -21453,24 +21464,24 @@ class PedometerBindings { return __objc_msgSend_613(obj, sel, aDate); } - late final __objc_msgSend_613Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_613 = - __objc_msgSend_613Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_613Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_613 = __objc_msgSend_613Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isDaylightSavingTimeForDate_1 = _registerName1( "isDaylightSavingTimeForDate:", @@ -21489,24 +21500,24 @@ class PedometerBindings { return __objc_msgSend_614(obj, sel, aDate); } - late final __objc_msgSend_614Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_614 = - __objc_msgSend_614Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_614Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_614 = __objc_msgSend_614Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_systemTimeZone1 = _registerName1("systemTimeZone"); ffi.Pointer _objc_msgSend_615( @@ -21516,22 +21527,22 @@ class PedometerBindings { return __objc_msgSend_615(obj, sel); } - late final __objc_msgSend_615Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_615 = - __objc_msgSend_615Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_615Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_615 = __objc_msgSend_615Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_resetSystemTimeZone1 = _registerName1("resetSystemTimeZone"); late final _sel_defaultTimeZone1 = _registerName1("defaultTimeZone"); @@ -21544,24 +21555,24 @@ class PedometerBindings { return __objc_msgSend_616(obj, sel, value); } - late final __objc_msgSend_616Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_616 = - __objc_msgSend_616Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_616Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_616 = __objc_msgSend_616Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localTimeZone1 = _registerName1("localTimeZone"); late final _sel_knownTimeZoneNames1 = _registerName1("knownTimeZoneNames"); @@ -21579,24 +21590,24 @@ class PedometerBindings { return __objc_msgSend_617(obj, sel, value); } - late final __objc_msgSend_617Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_617 = - __objc_msgSend_617Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_617Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_617 = __objc_msgSend_617Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_timeZoneDataVersion1 = _registerName1("timeZoneDataVersion"); late final _sel_secondsFromGMT1 = _registerName1("secondsFromGMT"); @@ -21619,24 +21630,24 @@ class PedometerBindings { return __objc_msgSend_618(obj, sel, aTimeZone); } - late final __objc_msgSend_618Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_618 = - __objc_msgSend_618Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_618Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_618 = __objc_msgSend_618Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedName_locale_1 = _registerName1( "localizedName:locale:", @@ -21650,26 +21661,26 @@ class PedometerBindings { return __objc_msgSend_619(obj, sel, style, locale); } - late final __objc_msgSend_619Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_619 = - __objc_msgSend_619Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_619Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_619 = __objc_msgSend_619Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_timeZoneWithName_1 = _registerName1("timeZoneWithName:"); late final _sel_timeZoneWithName_data_1 = _registerName1( @@ -21684,26 +21695,26 @@ class PedometerBindings { return __objc_msgSend_620(obj, sel, tzName, aData); } - late final __objc_msgSend_620Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_620 = - __objc_msgSend_620Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_620Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_620 = __objc_msgSend_620Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithName_1 = _registerName1("initWithName:"); late final _sel_initWithName_data_1 = _registerName1("initWithName:data:"); @@ -21718,24 +21729,24 @@ class PedometerBindings { return __objc_msgSend_621(obj, sel, seconds); } - late final __objc_msgSend_621Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_621 = - __objc_msgSend_621Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_621Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_621 = __objc_msgSend_621Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_timeZoneWithAbbreviation_1 = _registerName1( "timeZoneWithAbbreviation:", @@ -21751,22 +21762,22 @@ class PedometerBindings { return __objc_msgSend_622(obj, sel); } - late final __objc_msgSend_622Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_622 = - __objc_msgSend_622Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_622Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_622 = __objc_msgSend_622Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_autoupdatingCurrentCalendar1 = _registerName1( "autoupdatingCurrentCalendar", @@ -21782,24 +21793,24 @@ class PedometerBindings { return __objc_msgSend_623(obj, sel, calendarIdentifierConstant); } - late final __objc_msgSend_623Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_623 = - __objc_msgSend_623Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_623Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_623 = __objc_msgSend_623Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithCalendarIdentifier_1 = _registerName1( "initWithCalendarIdentifier:", @@ -21811,22 +21822,22 @@ class PedometerBindings { return __objc_msgSend_624(obj, sel); } - late final __objc_msgSend_624Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_624 = - __objc_msgSend_624Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_624Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_624 = __objc_msgSend_624Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_625( ffi.Pointer obj, @@ -21836,24 +21847,24 @@ class PedometerBindings { return __objc_msgSend_625(obj, sel, value); } - late final __objc_msgSend_625Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_625 = - __objc_msgSend_625Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_625Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_625 = __objc_msgSend_625Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_firstWeekday1 = _registerName1("firstWeekday"); late final _sel_setFirstWeekday_1 = _registerName1("setFirstWeekday:"); @@ -21912,24 +21923,20 @@ class PedometerBindings { return __objc_msgSend_626(obj, sel, unit); } - late final __objc_msgSend_626Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_626 = - __objc_msgSend_626Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_626Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_626 = __objc_msgSend_626Ptr + .asFunction< + _NSRange Function(ffi.Pointer, ffi.Pointer, int) + >(); void _objc_msgSend_626_stret( ffi.Pointer<_NSRange> stret, @@ -21940,26 +21947,26 @@ class PedometerBindings { return __objc_msgSend_626_stret(stret, obj, sel, unit); } - late final __objc_msgSend_626_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_626_stret = - __objc_msgSend_626_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_626_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_626_stret = __objc_msgSend_626_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_maximumRangeOfUnit_1 = _registerName1("maximumRangeOfUnit:"); late final _sel_rangeOfUnit_inUnit_forDate_1 = _registerName1( @@ -21975,28 +21982,28 @@ class PedometerBindings { return __objc_msgSend_627(obj, sel, smaller, larger, date); } - late final __objc_msgSend_627Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_627 = - __objc_msgSend_627Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_627Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_627 = __objc_msgSend_627Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ) + >(); void _objc_msgSend_627_stret( ffi.Pointer<_NSRange> stret, @@ -22009,30 +22016,30 @@ class PedometerBindings { return __objc_msgSend_627_stret(stret, obj, sel, smaller, larger, date); } - late final __objc_msgSend_627_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_627_stret = - __objc_msgSend_627_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_627_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_627_stret = __objc_msgSend_627_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ) + >(); late final _sel_ordinalityOfUnit_inUnit_forDate_1 = _registerName1( "ordinalityOfUnit:inUnit:forDate:", @@ -22047,28 +22054,28 @@ class PedometerBindings { return __objc_msgSend_628(obj, sel, smaller, larger, date); } - late final __objc_msgSend_628Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_628 = - __objc_msgSend_628Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_628Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_628 = __objc_msgSend_628Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ) + >(); late final _sel_rangeOfUnit_startDate_interval_forDate_1 = _registerName1( "rangeOfUnit:startDate:interval:forDate:", @@ -22084,30 +22091,30 @@ class PedometerBindings { return __objc_msgSend_629(obj, sel, unit, datep, tip, date); } - late final __objc_msgSend_629Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_629 = - __objc_msgSend_629Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_629Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_629 = __objc_msgSend_629Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSDateComponents1 = _getClass1("NSDateComponents"); late final _sel_calendar1 = _registerName1("calendar"); @@ -22118,22 +22125,22 @@ class PedometerBindings { return __objc_msgSend_630(obj, sel); } - late final __objc_msgSend_630Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_630 = - __objc_msgSend_630Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_630Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_630 = __objc_msgSend_630Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setCalendar_1 = _registerName1("setCalendar:"); void _objc_msgSend_631( @@ -22144,24 +22151,24 @@ class PedometerBindings { return __objc_msgSend_631(obj, sel, value); } - late final __objc_msgSend_631Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_631 = - __objc_msgSend_631Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_631Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_631 = __objc_msgSend_631Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); ffi.Pointer _objc_msgSend_632( ffi.Pointer obj, @@ -22170,22 +22177,22 @@ class PedometerBindings { return __objc_msgSend_632(obj, sel); } - late final __objc_msgSend_632Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_632 = - __objc_msgSend_632Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_632Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_632 = __objc_msgSend_632Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_633( ffi.Pointer obj, @@ -22195,24 +22202,24 @@ class PedometerBindings { return __objc_msgSend_633(obj, sel, value); } - late final __objc_msgSend_633Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_633 = - __objc_msgSend_633Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_633Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_633 = __objc_msgSend_633Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_era1 = _registerName1("era"); late final _sel_setEra_1 = _registerName1("setEra:"); @@ -22224,16 +22231,20 @@ class PedometerBindings { return __objc_msgSend_634(obj, sel, value); } - late final __objc_msgSend_634Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function(ffi.Pointer, ffi.Pointer, ffi.Long) - > - >('objc_msgSend'); - late final __objc_msgSend_634 = - __objc_msgSend_634Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_634Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_634 = __objc_msgSend_634Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_year1 = _registerName1("year"); late final _sel_setYear_1 = _registerName1("setYear:"); @@ -22279,26 +22290,21 @@ class PedometerBindings { return __objc_msgSend_635(obj, sel, value, unit); } - late final __objc_msgSend_635Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_635 = - __objc_msgSend_635Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_635Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_635 = __objc_msgSend_635Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int, int) + >(); late final _sel_valueForComponent_1 = _registerName1("valueForComponent:"); int _objc_msgSend_636( @@ -22309,20 +22315,20 @@ class PedometerBindings { return __objc_msgSend_636(obj, sel, unit); } - late final __objc_msgSend_636Ptr = _lookup< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_636 = - __objc_msgSend_636Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_636Ptr = + _lookup< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_636 = __objc_msgSend_636Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_isValidDate1 = _registerName1("isValidDate"); late final _sel_isValidDateInCalendar_1 = _registerName1( @@ -22336,24 +22342,24 @@ class PedometerBindings { return __objc_msgSend_637(obj, sel, calendar); } - late final __objc_msgSend_637Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_637 = - __objc_msgSend_637Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_637Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_637 = __objc_msgSend_637Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dateFromComponents_1 = _registerName1("dateFromComponents:"); ffi.Pointer _objc_msgSend_638( @@ -22364,24 +22370,24 @@ class PedometerBindings { return __objc_msgSend_638(obj, sel, comps); } - late final __objc_msgSend_638Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_638 = - __objc_msgSend_638Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_638Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_638 = __objc_msgSend_638Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_components_fromDate_1 = _registerName1( "components:fromDate:", @@ -22395,26 +22401,26 @@ class PedometerBindings { return __objc_msgSend_639(obj, sel, unitFlags, date); } - late final __objc_msgSend_639Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_639 = - __objc_msgSend_639Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_639Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_639 = __objc_msgSend_639Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_dateByAddingComponents_toDate_options_1 = _registerName1( "dateByAddingComponents:toDate:options:", @@ -22429,28 +22435,28 @@ class PedometerBindings { return __objc_msgSend_640(obj, sel, comps, date, opts); } - late final __objc_msgSend_640Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_640 = - __objc_msgSend_640Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_640Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_640 = __objc_msgSend_640Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_components_fromDate_toDate_options_1 = _registerName1( "components:fromDate:toDate:options:", @@ -22473,30 +22479,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_641Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_641 = - __objc_msgSend_641Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_641Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_641 = __objc_msgSend_641Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_getEra_year_month_day_fromDate_1 = _registerName1( "getEra:year:month:day:fromDate:", @@ -22521,32 +22527,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_642Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_642 = - __objc_msgSend_642Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_642Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_642 = __objc_msgSend_642Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getEra_yearForWeekOfYear_weekOfYear_weekday_fromDate_1 = _registerName1("getEra:yearForWeekOfYear:weekOfYear:weekday:fromDate:"); @@ -22563,26 +22569,26 @@ class PedometerBindings { return __objc_msgSend_643(obj, sel, unit, date); } - late final __objc_msgSend_643Ptr = _lookup< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_643 = - __objc_msgSend_643Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_643Ptr = + _lookup< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_643 = __objc_msgSend_643Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_dateWithEra_year_month_day_hour_minute_second_nanosecond_1 = _registerName1( @@ -22614,38 +22620,38 @@ class PedometerBindings { ); } - late final __objc_msgSend_644Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_644 = - __objc_msgSend_644Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - int, - int, - int, - int, - int, - int, - ) - >(); + late final __objc_msgSend_644Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_644 = __objc_msgSend_644Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + int, + int, + int, + int, + int, + int, + ) + >(); late final _sel_dateWithEra_yearForWeekOfYear_weekOfYear_weekday_hour_minute_second_nanosecond_1 = _registerName1( @@ -22664,26 +22670,26 @@ class PedometerBindings { return __objc_msgSend_645(obj, sel, timezone, date); } - late final __objc_msgSend_645Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_645 = - __objc_msgSend_645Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_645Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_645 = __objc_msgSend_645Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_compareDate_toDate_toUnitGranularity_1 = _registerName1( "compareDate:toDate:toUnitGranularity:", @@ -22698,28 +22704,28 @@ class PedometerBindings { return __objc_msgSend_646(obj, sel, date1, date2, unit); } - late final __objc_msgSend_646Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_646 = - __objc_msgSend_646Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_646Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_646 = __objc_msgSend_646Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_isDate_equalToDate_toUnitGranularity_1 = _registerName1( "isDate:equalToDate:toUnitGranularity:", @@ -22734,28 +22740,28 @@ class PedometerBindings { return __objc_msgSend_647(obj, sel, date1, date2, unit); } - late final __objc_msgSend_647Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_647 = - __objc_msgSend_647Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_647Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_647 = __objc_msgSend_647Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_isDate_inSameDayAsDate_1 = _registerName1( "isDate:inSameDayAsDate:", @@ -22769,26 +22775,26 @@ class PedometerBindings { return __objc_msgSend_648(obj, sel, date1, date2); } - late final __objc_msgSend_648Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_648 = - __objc_msgSend_648Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_648Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_648 = __objc_msgSend_648Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isDateInToday_1 = _registerName1("isDateInToday:"); late final _sel_isDateInYesterday_1 = _registerName1("isDateInYesterday:"); @@ -22806,28 +22812,28 @@ class PedometerBindings { return __objc_msgSend_649(obj, sel, datep, tip, date); } - late final __objc_msgSend_649Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_649 = - __objc_msgSend_649Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_649Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_649 = __objc_msgSend_649Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_nextWeekendStartDate_interval_options_afterDate_1 = _registerName1("nextWeekendStartDate:interval:options:afterDate:"); @@ -22842,30 +22848,30 @@ class PedometerBindings { return __objc_msgSend_650(obj, sel, datep, tip, options, date); } - late final __objc_msgSend_650Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_650 = - __objc_msgSend_650Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_650Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_650 = __objc_msgSend_650Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_components_fromDateComponents_toDateComponents_options_1 = _registerName1("components:fromDateComponents:toDateComponents:options:"); @@ -22887,30 +22893,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_651Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_651 = - __objc_msgSend_651Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_651Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_651 = __objc_msgSend_651Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_dateByAddingUnit_value_toDate_options_1 = _registerName1( "dateByAddingUnit:value:toDate:options:", @@ -22926,31 +22932,31 @@ class PedometerBindings { return __objc_msgSend_652(obj, sel, unit, value, date, options); } - late final __objc_msgSend_652Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Long, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_652 = - __objc_msgSend_652Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - int, - ) - >(); - + late final __objc_msgSend_652Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Long, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_652 = __objc_msgSend_652Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + int, + ) + >(); + late final _sel_enumerateDatesStartingAfterDate_matchingComponents_options_usingBlock_1 = _registerName1( "enumerateDatesStartingAfterDate:matchingComponents:options:usingBlock:", @@ -22966,30 +22972,30 @@ class PedometerBindings { return __objc_msgSend_653(obj, sel, start, comps, opts, block); } - late final __objc_msgSend_653Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_653 = - __objc_msgSend_653Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_653Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_653 = __objc_msgSend_653Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_nextDateAfterDate_matchingComponents_options_1 = _registerName1("nextDateAfterDate:matchingComponents:options:"); @@ -23003,28 +23009,28 @@ class PedometerBindings { return __objc_msgSend_654(obj, sel, date, comps, options); } - late final __objc_msgSend_654Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_654 = - __objc_msgSend_654Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_654Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_654 = __objc_msgSend_654Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_nextDateAfterDate_matchingUnit_value_options_1 = _registerName1("nextDateAfterDate:matchingUnit:value:options:"); @@ -23039,30 +23045,30 @@ class PedometerBindings { return __objc_msgSend_655(obj, sel, date, unit, value, options); } - late final __objc_msgSend_655Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Long, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_655 = - __objc_msgSend_655Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - int, - ) - >(); + late final __objc_msgSend_655Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Long, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_655 = __objc_msgSend_655Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + int, + ) + >(); late final _sel_nextDateAfterDate_matchingHour_minute_second_options_1 = _registerName1("nextDateAfterDate:matchingHour:minute:second:options:"); @@ -23086,32 +23092,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_656Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_656 = - __objc_msgSend_656Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - int, - int, - ) - >(); + late final __objc_msgSend_656Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_656 = __objc_msgSend_656Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + int, + int, + ) + >(); late final _sel_dateBySettingUnit_value_ofDate_options_1 = _registerName1( "dateBySettingUnit:value:ofDate:options:", @@ -23130,32 +23136,32 @@ class PedometerBindings { return __objc_msgSend_657(obj, sel, h, m, s, date, opts); } - late final __objc_msgSend_657Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Long, - ffi.Long, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_657 = - __objc_msgSend_657Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - int, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_657Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Long, + ffi.Long, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_657 = __objc_msgSend_657Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + int, + ffi.Pointer, + int, + ) + >(); late final _sel_date_matchesComponents_1 = _registerName1( "date:matchesComponents:", @@ -23169,26 +23175,26 @@ class PedometerBindings { return __objc_msgSend_658(obj, sel, date, components); } - late final __objc_msgSend_658Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_658 = - __objc_msgSend_658Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_658Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_658 = __objc_msgSend_658Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_659( ffi.Pointer obj, @@ -23198,24 +23204,24 @@ class PedometerBindings { return __objc_msgSend_659(obj, sel, value); } - late final __objc_msgSend_659Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_659 = - __objc_msgSend_659Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_659Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_659 = __objc_msgSend_659Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_isLenient1 = _registerName1("isLenient"); late final _sel_setLenient_1 = _registerName1("setLenient:"); @@ -23231,24 +23237,24 @@ class PedometerBindings { return __objc_msgSend_660(obj, sel, value); } - late final __objc_msgSend_660Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_660 = - __objc_msgSend_660Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_660Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_660 = __objc_msgSend_660Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_defaultDate1 = _registerName1("defaultDate"); late final _sel_setDefaultDate_1 = _registerName1("setDefaultDate:"); @@ -23261,24 +23267,24 @@ class PedometerBindings { return __objc_msgSend_661(obj, sel, value); } - late final __objc_msgSend_661Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_661 = - __objc_msgSend_661Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_661Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_661 = __objc_msgSend_661Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setMonthSymbols_1 = _registerName1("setMonthSymbols:"); late final _sel_setShortMonthSymbols_1 = _registerName1( @@ -23351,24 +23357,24 @@ class PedometerBindings { return __objc_msgSend_662(obj, sel, number); } - late final __objc_msgSend_662Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_662 = - __objc_msgSend_662Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_662Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_662 = __objc_msgSend_662Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_numberFromString_1 = _registerName1("numberFromString:"); ffi.Pointer _objc_msgSend_663( @@ -23379,24 +23385,24 @@ class PedometerBindings { return __objc_msgSend_663(obj, sel, string); } - late final __objc_msgSend_663Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_663 = - __objc_msgSend_663Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_663Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_663 = __objc_msgSend_663Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_localizedStringFromNumber_numberStyle_1 = _registerName1( "localizedStringFromNumber:numberStyle:", @@ -23410,41 +23416,41 @@ class PedometerBindings { return __objc_msgSend_664(obj, sel, num, nstyle); } - late final __objc_msgSend_664Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_664 = - __objc_msgSend_664Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_664Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_664 = __objc_msgSend_664Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); int _objc_msgSend_665(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_665(obj, sel); } - late final __objc_msgSend_665Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_665 = - __objc_msgSend_665Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_665Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_665 = __objc_msgSend_665Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); void _objc_msgSend_666( ffi.Pointer obj, @@ -23454,36 +23460,36 @@ class PedometerBindings { return __objc_msgSend_666(obj, sel, behavior); } - late final __objc_msgSend_666Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_666 = - __objc_msgSend_666Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_666Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_666 = __objc_msgSend_666Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_numberStyle1 = _registerName1("numberStyle"); int _objc_msgSend_667(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_667(obj, sel); } - late final __objc_msgSend_667Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_667 = - __objc_msgSend_667Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_667Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_667 = __objc_msgSend_667Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setNumberStyle_1 = _registerName1("setNumberStyle:"); void _objc_msgSend_668( @@ -23494,20 +23500,20 @@ class PedometerBindings { return __objc_msgSend_668(obj, sel, value); } - late final __objc_msgSend_668Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_668 = - __objc_msgSend_668Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_668Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_668 = __objc_msgSend_668Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_generatesDecimalNumbers1 = _registerName1( "generatesDecimalNumbers", @@ -23523,20 +23529,20 @@ class PedometerBindings { return __objc_msgSend_669(obj, sel, value); } - late final __objc_msgSend_669Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_669 = - __objc_msgSend_669Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_669Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_669 = __objc_msgSend_669Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_negativeFormat1 = _registerName1("negativeFormat"); late final _sel_setNegativeFormat_1 = _registerName1("setNegativeFormat:"); @@ -23554,24 +23560,24 @@ class PedometerBindings { return __objc_msgSend_670(obj, sel, value); } - late final __objc_msgSend_670Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_670 = - __objc_msgSend_670Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_670Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_670 = __objc_msgSend_670Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_positiveFormat1 = _registerName1("positiveFormat"); late final _sel_setPositiveFormat_1 = _registerName1("setPositiveFormat:"); @@ -23704,16 +23710,16 @@ class PedometerBindings { return __objc_msgSend_671(obj, sel); } - late final __objc_msgSend_671Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_671 = - __objc_msgSend_671Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_671Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_671 = __objc_msgSend_671Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setPaddingPosition_1 = _registerName1("setPaddingPosition:"); void _objc_msgSend_672( @@ -23724,36 +23730,36 @@ class PedometerBindings { return __objc_msgSend_672(obj, sel, value); } - late final __objc_msgSend_672Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_672 = - __objc_msgSend_672Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_672Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_672 = __objc_msgSend_672Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_roundingMode1 = _registerName1("roundingMode"); int _objc_msgSend_673(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_673(obj, sel); } - late final __objc_msgSend_673Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_673 = - __objc_msgSend_673Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_673Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_673 = __objc_msgSend_673Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setRoundingMode_1 = _registerName1("setRoundingMode:"); void _objc_msgSend_674( @@ -23764,20 +23770,20 @@ class PedometerBindings { return __objc_msgSend_674(obj, sel, value); } - late final __objc_msgSend_674Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_674 = - __objc_msgSend_674Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_674Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_674 = __objc_msgSend_674Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_roundingIncrement1 = _registerName1("roundingIncrement"); ffi.Pointer _objc_msgSend_675( @@ -23787,22 +23793,22 @@ class PedometerBindings { return __objc_msgSend_675(obj, sel); } - late final __objc_msgSend_675Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_675 = - __objc_msgSend_675Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_675Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_675 = __objc_msgSend_675Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setRoundingIncrement_1 = _registerName1( "setRoundingIncrement:", @@ -23815,24 +23821,24 @@ class PedometerBindings { return __objc_msgSend_676(obj, sel, value); } - late final __objc_msgSend_676Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_676 = - __objc_msgSend_676Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_676Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_676 = __objc_msgSend_676Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_minimumIntegerDigits1 = _registerName1( "minimumIntegerDigits", @@ -23920,24 +23926,24 @@ class PedometerBindings { return __objc_msgSend_677(obj, sel, value); } - late final __objc_msgSend_677Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_677 = - __objc_msgSend_677Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_677Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_677 = __objc_msgSend_677Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_attributedStringForNil1 = _registerName1( "attributedStringForNil", @@ -23964,22 +23970,22 @@ class PedometerBindings { return __objc_msgSend_678(obj, sel); } - late final __objc_msgSend_678Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_678 = - __objc_msgSend_678Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_678Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_678 = __objc_msgSend_678Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithRoundingMode_scale_raiseOnExactness_raiseOnOverflow_raiseOnUnderflow_raiseOnDivideByZero_1 = _registerName1( @@ -24007,34 +24013,34 @@ class PedometerBindings { ); } - late final __objc_msgSend_679Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Short, - ffi.Bool, - ffi.Bool, - ffi.Bool, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_679 = - __objc_msgSend_679Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - bool, - bool, - bool, - bool, - ) - >(); + late final __objc_msgSend_679Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Short, + ffi.Bool, + ffi.Bool, + ffi.Bool, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_679 = __objc_msgSend_679Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + bool, + bool, + bool, + bool, + ) + >(); late final _sel_decimalNumberHandlerWithRoundingMode_scale_raiseOnExactness_raiseOnOverflow_raiseOnUnderflow_raiseOnDivideByZero_1 = _registerName1( @@ -24052,24 +24058,24 @@ class PedometerBindings { return __objc_msgSend_680(obj, sel, value); } - late final __objc_msgSend_680Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_680 = - __objc_msgSend_680Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_680Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_680 = __objc_msgSend_680Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSScanner1 = _getClass1("NSScanner"); late final _sel_scanLocation1 = _registerName1("scanLocation"); @@ -24084,22 +24090,22 @@ class PedometerBindings { return __objc_msgSend_681(obj, sel); } - late final __objc_msgSend_681Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_681 = - __objc_msgSend_681Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_681Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_681 = __objc_msgSend_681Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setCharactersToBeSkipped_1 = _registerName1( "setCharactersToBeSkipped:", @@ -24112,24 +24118,24 @@ class PedometerBindings { return __objc_msgSend_682(obj, sel, value); } - late final __objc_msgSend_682Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_682 = - __objc_msgSend_682Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_682Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_682 = __objc_msgSend_682Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_caseSensitive1 = _registerName1("caseSensitive"); late final _sel_setCaseSensitive_1 = _registerName1("setCaseSensitive:"); @@ -24142,24 +24148,24 @@ class PedometerBindings { return __objc_msgSend_683(obj, sel, result); } - late final __objc_msgSend_683Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_683 = - __objc_msgSend_683Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_683Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_683 = __objc_msgSend_683Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanInteger_1 = _registerName1("scanInteger:"); bool _objc_msgSend_684( @@ -24170,24 +24176,24 @@ class PedometerBindings { return __objc_msgSend_684(obj, sel, result); } - late final __objc_msgSend_684Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_684 = - __objc_msgSend_684Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_684Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_684 = __objc_msgSend_684Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanLongLong_1 = _registerName1("scanLongLong:"); bool _objc_msgSend_685( @@ -24198,24 +24204,24 @@ class PedometerBindings { return __objc_msgSend_685(obj, sel, result); } - late final __objc_msgSend_685Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_685 = - __objc_msgSend_685Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_685Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_685 = __objc_msgSend_685Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanUnsignedLongLong_1 = _registerName1( "scanUnsignedLongLong:", @@ -24228,24 +24234,24 @@ class PedometerBindings { return __objc_msgSend_686(obj, sel, result); } - late final __objc_msgSend_686Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_686 = - __objc_msgSend_686Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_686Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_686 = __objc_msgSend_686Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanFloat_1 = _registerName1("scanFloat:"); bool _objc_msgSend_687( @@ -24256,24 +24262,24 @@ class PedometerBindings { return __objc_msgSend_687(obj, sel, result); } - late final __objc_msgSend_687Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_687 = - __objc_msgSend_687Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_687Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_687 = __objc_msgSend_687Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanDouble_1 = _registerName1("scanDouble:"); bool _objc_msgSend_688( @@ -24284,24 +24290,24 @@ class PedometerBindings { return __objc_msgSend_688(obj, sel, result); } - late final __objc_msgSend_688Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_688 = - __objc_msgSend_688Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_688Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_688 = __objc_msgSend_688Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanHexInt_1 = _registerName1("scanHexInt:"); bool _objc_msgSend_689( @@ -24312,24 +24318,24 @@ class PedometerBindings { return __objc_msgSend_689(obj, sel, result); } - late final __objc_msgSend_689Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_689 = - __objc_msgSend_689Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_689Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_689 = __objc_msgSend_689Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scanHexLongLong_1 = _registerName1("scanHexLongLong:"); late final _sel_scanHexFloat_1 = _registerName1("scanHexFloat:"); @@ -24346,26 +24352,26 @@ class PedometerBindings { return __objc_msgSend_690(obj, sel, string, result); } - late final __objc_msgSend_690Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_690 = - __objc_msgSend_690Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_690Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_690 = __objc_msgSend_690Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_scanCharactersFromSet_intoString_1 = _registerName1( "scanCharactersFromSet:intoString:", @@ -24379,26 +24385,26 @@ class PedometerBindings { return __objc_msgSend_691(obj, sel, set1, result); } - late final __objc_msgSend_691Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_691 = - __objc_msgSend_691Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_691Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_691 = __objc_msgSend_691Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_scanUpToString_intoString_1 = _registerName1( "scanUpToString:intoString:", @@ -24420,24 +24426,24 @@ class PedometerBindings { return __objc_msgSend_692(obj, sel, dcm); } - late final __objc_msgSend_692Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_692 = - __objc_msgSend_692Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_692Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_692 = __objc_msgSend_692Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSException1 = _getClass1("NSException"); late final _sel_exceptionWithName_reason_userInfo_1 = _registerName1( @@ -24453,28 +24459,28 @@ class PedometerBindings { return __objc_msgSend_693(obj, sel, name, reason, userInfo); } - late final __objc_msgSend_693Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_693 = - __objc_msgSend_693Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_693Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_693 = __objc_msgSend_693Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithName_reason_userInfo_1 = _registerName1( "initWithName:reason:userInfo:", @@ -24489,28 +24495,28 @@ class PedometerBindings { return __objc_msgSend_694(obj, sel, aName, aReason, aUserInfo); } - late final __objc_msgSend_694Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_694 = - __objc_msgSend_694Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_694Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_694 = __objc_msgSend_694Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_reason1 = _registerName1("reason"); late final _sel_raise1 = _registerName1("raise"); @@ -24524,26 +24530,26 @@ class PedometerBindings { return __objc_msgSend_695(obj, sel, name, format); } - late final __objc_msgSend_695Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_695 = - __objc_msgSend_695Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_695Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_695 = __objc_msgSend_695Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_raise_format_arguments_1 = _registerName1( "raise:format:arguments:", @@ -24558,28 +24564,28 @@ class PedometerBindings { return __objc_msgSend_696(obj, sel, name, format, argList); } - late final __objc_msgSend_696Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_696 = - __objc_msgSend_696Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_696Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_696 = __objc_msgSend_696Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSRunLoop1 = _getClass1("NSRunLoop"); late final _sel_currentRunLoop1 = _registerName1("currentRunLoop"); @@ -24590,22 +24596,22 @@ class PedometerBindings { return __objc_msgSend_697(obj, sel); } - late final __objc_msgSend_697Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_697 = - __objc_msgSend_697Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_697Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_697 = __objc_msgSend_697Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_mainRunLoop1 = _registerName1("mainRunLoop"); late final _sel_currentMode1 = _registerName1("currentMode"); @@ -24617,22 +24623,22 @@ class PedometerBindings { return __objc_msgSend_698(obj, sel); } - late final __objc_msgSend_698Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<__CFRunLoop> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_698 = - __objc_msgSend_698Ptr - .asFunction< - ffi.Pointer<__CFRunLoop> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_698Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<__CFRunLoop> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_698 = __objc_msgSend_698Ptr + .asFunction< + ffi.Pointer<__CFRunLoop> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSTimer1 = _getClass1("NSTimer"); late final _sel_timerWithTimeInterval_invocation_repeats_1 = _registerName1( @@ -24648,28 +24654,28 @@ class PedometerBindings { return __objc_msgSend_699(obj, sel, ti, invocation, yesOrNo); } - late final __objc_msgSend_699Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_699 = - __objc_msgSend_699Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_699Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_699 = __objc_msgSend_699Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + bool, + ) + >(); late final _sel_scheduledTimerWithTimeInterval_invocation_repeats_1 = _registerName1("scheduledTimerWithTimeInterval:invocation:repeats:"); @@ -24695,32 +24701,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_700Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_700 = - __objc_msgSend_700Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_700Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_700 = __objc_msgSend_700Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_scheduledTimerWithTimeInterval_target_selector_userInfo_repeats_1 = _registerName1( @@ -24739,28 +24745,28 @@ class PedometerBindings { return __objc_msgSend_701(obj, sel, interval, repeats, block); } - late final __objc_msgSend_701Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Bool, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_701 = - __objc_msgSend_701Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - double, - bool, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_701Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Bool, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_701 = __objc_msgSend_701Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + double, + bool, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_scheduledTimerWithTimeInterval_repeats_block_1 = _registerName1("scheduledTimerWithTimeInterval:repeats:block:"); @@ -24778,30 +24784,30 @@ class PedometerBindings { return __objc_msgSend_702(obj, sel, date, interval, repeats, block); } - late final __objc_msgSend_702Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Bool, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_702 = - __objc_msgSend_702Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - double, - bool, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_702Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Bool, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_702 = __objc_msgSend_702Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + double, + bool, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_initWithFireDate_interval_target_selector_userInfo_repeats_1 = _registerName1( @@ -24820,34 +24826,34 @@ class PedometerBindings { return __objc_msgSend_703(obj, sel, date, ti, t, s, ui, rep); } - late final __objc_msgSend_703Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_703 = - __objc_msgSend_703Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_703Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_703 = __objc_msgSend_703Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_fire1 = _registerName1("fire"); late final _sel_fireDate1 = _registerName1("fireDate"); @@ -24860,24 +24866,24 @@ class PedometerBindings { return __objc_msgSend_704(obj, sel, value); } - late final __objc_msgSend_704Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_704 = - __objc_msgSend_704Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_704Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_704 = __objc_msgSend_704Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_timeInterval1 = _registerName1("timeInterval"); late final _sel_tolerance1 = _registerName1("tolerance"); @@ -24894,26 +24900,26 @@ class PedometerBindings { return __objc_msgSend_705(obj, sel, timer, mode); } - late final __objc_msgSend_705Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_705 = - __objc_msgSend_705Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_705Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_705 = __objc_msgSend_705Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSPort1 = _getClass1("NSPort"); ffi.Pointer _objc_msgSend_706( @@ -24923,22 +24929,22 @@ class PedometerBindings { return __objc_msgSend_706(obj, sel); } - late final __objc_msgSend_706Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_706 = - __objc_msgSend_706Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_706Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_706 = __objc_msgSend_706Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_scheduleInRunLoop_forMode_1 = _registerName1( "scheduleInRunLoop:forMode:", @@ -24952,26 +24958,26 @@ class PedometerBindings { return __objc_msgSend_707(obj, sel, runLoop, mode); } - late final __objc_msgSend_707Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_707 = - __objc_msgSend_707Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_707Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_707 = __objc_msgSend_707Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeFromRunLoop_forMode_1 = _registerName1( "removeFromRunLoop:forMode:", @@ -24998,30 +25004,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_708Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_708 = - __objc_msgSend_708Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_708Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_708 = __objc_msgSend_708Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_sendBeforeDate_msgid_components_from_reserved_1 = _registerName1("sendBeforeDate:msgid:components:from:reserved:"); @@ -25045,32 +25051,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_709Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_709 = - __objc_msgSend_709Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_709Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_709 = __objc_msgSend_709Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _class_NSConnection1 = _getClass1("NSConnection"); late final _sel_addConnection_toRunLoop_forMode_1 = _registerName1( @@ -25086,28 +25092,28 @@ class PedometerBindings { return __objc_msgSend_710(obj, sel, conn, runLoop, mode); } - late final __objc_msgSend_710Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_710 = - __objc_msgSend_710Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_710Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_710 = __objc_msgSend_710Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeConnection_fromRunLoop_forMode_1 = _registerName1( "removeConnection:fromRunLoop:forMode:", @@ -25122,26 +25128,26 @@ class PedometerBindings { return __objc_msgSend_711(obj, sel, aPort, mode); } - late final __objc_msgSend_711Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_711 = - __objc_msgSend_711Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_711Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_711 = __objc_msgSend_711Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removePort_forMode_1 = _registerName1("removePort:forMode:"); late final _sel_limitDateForMode_1 = _registerName1("limitDateForMode:"); @@ -25157,26 +25163,26 @@ class PedometerBindings { return __objc_msgSend_712(obj, sel, mode, limitDate); } - late final __objc_msgSend_712Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_712 = - __objc_msgSend_712Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_712Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_712 = __objc_msgSend_712Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_run1 = _registerName1("run"); late final _sel_runUntilDate_1 = _registerName1("runUntilDate:"); @@ -25190,26 +25196,26 @@ class PedometerBindings { return __objc_msgSend_713(obj, sel, mode, limitDate); } - late final __objc_msgSend_713Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_713 = - __objc_msgSend_713Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_713Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_713 = __objc_msgSend_713Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_configureAsServer1 = _registerName1("configureAsServer"); late final _sel_performInModes_block_1 = _registerName1( @@ -25224,26 +25230,26 @@ class PedometerBindings { return __objc_msgSend_714(obj, sel, modes, block); } - late final __objc_msgSend_714Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_714 = - __objc_msgSend_714Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_714Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_714 = __objc_msgSend_714Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_performBlock_1 = _registerName1("performBlock:"); late final _sel_performSelector_target_argument_order_modes_1 = @@ -25260,32 +25266,32 @@ class PedometerBindings { return __objc_msgSend_715(obj, sel, aSelector, target, arg, order, modes); } - late final __objc_msgSend_715Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_715 = - __objc_msgSend_715Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_715Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_715 = __objc_msgSend_715Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_cancelPerformSelector_target_argument_1 = _registerName1( "cancelPerformSelector:target:argument:", @@ -25307,26 +25313,26 @@ class PedometerBindings { return __objc_msgSend_716(obj, sel, fd, closeopt); } - late final __objc_msgSend_716Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_716 = - __objc_msgSend_716Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - bool, - ) - >(); + late final __objc_msgSend_716Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_716 = __objc_msgSend_716Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + bool, + ) + >(); late final _sel_readDataToEndOfFileAndReturnError_1 = _registerName1( "readDataToEndOfFileAndReturnError:", @@ -25339,24 +25345,24 @@ class PedometerBindings { return __objc_msgSend_717(obj, sel, error); } - late final __objc_msgSend_717Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_717 = - __objc_msgSend_717Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_717Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_717 = __objc_msgSend_717Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_readDataUpToLength_error_1 = _registerName1( "readDataUpToLength:error:", @@ -25370,26 +25376,26 @@ class PedometerBindings { return __objc_msgSend_718(obj, sel, length, error); } - late final __objc_msgSend_718Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_718 = - __objc_msgSend_718Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_718Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_718 = __objc_msgSend_718Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_writeData_error_1 = _registerName1("writeData:error:"); bool _objc_msgSend_719( @@ -25401,26 +25407,26 @@ class PedometerBindings { return __objc_msgSend_719(obj, sel, data, error); } - late final __objc_msgSend_719Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_719 = - __objc_msgSend_719Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_719Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_719 = __objc_msgSend_719Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_getOffset_error_1 = _registerName1("getOffset:error:"); bool _objc_msgSend_720( @@ -25432,26 +25438,26 @@ class PedometerBindings { return __objc_msgSend_720(obj, sel, offsetInFile, error); } - late final __objc_msgSend_720Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_720 = - __objc_msgSend_720Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_720Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_720 = __objc_msgSend_720Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_seekToEndReturningOffset_error_1 = _registerName1( "seekToEndReturningOffset:error:", @@ -25466,26 +25472,26 @@ class PedometerBindings { return __objc_msgSend_721(obj, sel, offset, error); } - late final __objc_msgSend_721Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLongLong, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_721 = - __objc_msgSend_721Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_721Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLongLong, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_721 = __objc_msgSend_721Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_truncateAtOffset_error_1 = _registerName1( "truncateAtOffset:error:", @@ -25506,22 +25512,22 @@ class PedometerBindings { return __objc_msgSend_722(obj, sel); } - late final __objc_msgSend_722Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_722 = - __objc_msgSend_722Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_722Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_722 = __objc_msgSend_722Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileHandleWithStandardOutput1 = _registerName1( "fileHandleWithStandardOutput", @@ -25553,26 +25559,26 @@ class PedometerBindings { return __objc_msgSend_723(obj, sel, url, error); } - late final __objc_msgSend_723Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_723 = - __objc_msgSend_723Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_723Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_723 = __objc_msgSend_723Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_fileHandleForWritingToURL_error_1 = _registerName1( "fileHandleForWritingToURL:error:", @@ -25591,24 +25597,24 @@ class PedometerBindings { return __objc_msgSend_724(obj, sel, modes); } - late final __objc_msgSend_724Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_724 = - __objc_msgSend_724Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_724Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_724 = __objc_msgSend_724Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_readInBackgroundAndNotify1 = _registerName1( "readInBackgroundAndNotify", @@ -25637,22 +25643,22 @@ class PedometerBindings { return __objc_msgSend_725(obj, sel); } - late final __objc_msgSend_725Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_725 = - __objc_msgSend_725Ptr - .asFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_725Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_725 = __objc_msgSend_725Ptr + .asFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setReadabilityHandler_1 = _registerName1( "setReadabilityHandler:", @@ -25665,24 +25671,24 @@ class PedometerBindings { return __objc_msgSend_726(obj, sel, value); } - late final __objc_msgSend_726Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_726 = - __objc_msgSend_726Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_726Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_726 = __objc_msgSend_726Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_writeabilityHandler1 = _registerName1("writeabilityHandler"); late final _sel_setWriteabilityHandler_1 = _registerName1( @@ -25699,24 +25705,24 @@ class PedometerBindings { return __objc_msgSend_727(obj, sel, fd); } - late final __objc_msgSend_727Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_727 = - __objc_msgSend_727Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_727Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_727 = __objc_msgSend_727Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_fileDescriptor1 = _registerName1("fileDescriptor"); late final _sel_readDataToEndOfFile1 = _registerName1("readDataToEndOfFile"); @@ -25729,24 +25735,24 @@ class PedometerBindings { return __objc_msgSend_728(obj, sel, length); } - late final __objc_msgSend_728Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_728 = - __objc_msgSend_728Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_728Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_728 = __objc_msgSend_728Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_writeData_1 = _registerName1("writeData:"); late final _sel_offsetInFile1 = _registerName1("offsetInFile"); @@ -25760,20 +25766,20 @@ class PedometerBindings { return __objc_msgSend_729(obj, sel, offset); } - late final __objc_msgSend_729Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLongLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_729 = - __objc_msgSend_729Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_729Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLongLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_729 = __objc_msgSend_729Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_truncateFileAtOffset_1 = _registerName1( "truncateFileAtOffset:", @@ -25791,22 +25797,22 @@ class PedometerBindings { return __objc_msgSend_730(obj, sel); } - late final __objc_msgSend_730Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_730 = - __objc_msgSend_730Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_730Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_730 = __objc_msgSend_730Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sharedCookieStorageForGroupContainerIdentifier_1 = _registerName1("sharedCookieStorageForGroupContainerIdentifier:"); @@ -25818,24 +25824,24 @@ class PedometerBindings { return __objc_msgSend_731(obj, sel, identifier); } - late final __objc_msgSend_731Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_731 = - __objc_msgSend_731Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_731Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_731 = __objc_msgSend_731Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_cookies1 = _registerName1("cookies"); late final _class_NSHTTPCookie1 = _getClass1("NSHTTPCookie"); @@ -25848,24 +25854,24 @@ class PedometerBindings { return __objc_msgSend_732(obj, sel, properties); } - late final __objc_msgSend_732Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_732 = - __objc_msgSend_732Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_732Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_732 = __objc_msgSend_732Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_cookieWithProperties_1 = _registerName1( "cookieWithProperties:", @@ -25878,24 +25884,24 @@ class PedometerBindings { return __objc_msgSend_733(obj, sel, properties); } - late final __objc_msgSend_733Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_733 = - __objc_msgSend_733Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_733Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_733 = __objc_msgSend_733Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_requestHeaderFieldsWithCookies_1 = _registerName1( "requestHeaderFieldsWithCookies:", @@ -25912,26 +25918,26 @@ class PedometerBindings { return __objc_msgSend_734(obj, sel, headerFields, URL); } - late final __objc_msgSend_734Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_734 = - __objc_msgSend_734Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_734Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_734 = __objc_msgSend_734Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_properties1 = _registerName1("properties"); late final _sel_value1 = _registerName1("value"); @@ -25952,24 +25958,24 @@ class PedometerBindings { return __objc_msgSend_735(obj, sel, cookie); } - late final __objc_msgSend_735Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_735 = - __objc_msgSend_735Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_735Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_735 = __objc_msgSend_735Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_deleteCookie_1 = _registerName1("deleteCookie:"); late final _sel_removeCookiesSinceDate_1 = _registerName1( @@ -25989,44 +25995,44 @@ class PedometerBindings { return __objc_msgSend_736(obj, sel, cookies, URL, mainDocumentURL); } - late final __objc_msgSend_736Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_736 = - __objc_msgSend_736Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_736Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_736 = __objc_msgSend_736Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_cookieAcceptPolicy1 = _registerName1("cookieAcceptPolicy"); int _objc_msgSend_737(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_737(obj, sel); } - late final __objc_msgSend_737Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_737 = - __objc_msgSend_737Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_737Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_737 = __objc_msgSend_737Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setCookieAcceptPolicy_1 = _registerName1( "setCookieAcceptPolicy:", @@ -26039,20 +26045,20 @@ class PedometerBindings { return __objc_msgSend_738(obj, sel, value); } - late final __objc_msgSend_738Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_738 = - __objc_msgSend_738Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_738Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_738 = __objc_msgSend_738Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_sortedCookiesUsingDescriptors_1 = _registerName1( "sortedCookiesUsingDescriptors:", @@ -26069,24 +26075,24 @@ class PedometerBindings { return __objc_msgSend_739(obj, sel, URL); } - late final __objc_msgSend_739Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_739 = - __objc_msgSend_739Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_739Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_739 = __objc_msgSend_739Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_supportsSecureCoding1 = _registerName1( "supportsSecureCoding", @@ -26104,28 +26110,28 @@ class PedometerBindings { return __objc_msgSend_740(obj, sel, URL, cachePolicy, timeoutInterval); } - late final __objc_msgSend_740Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_740 = - __objc_msgSend_740Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - double, - ) - >(); + late final __objc_msgSend_740Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_740 = __objc_msgSend_740Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + double, + ) + >(); late final _sel_initWithURL_cachePolicy_timeoutInterval_1 = _registerName1( "initWithURL:cachePolicy:timeoutInterval:", @@ -26136,16 +26142,16 @@ class PedometerBindings { return __objc_msgSend_741(obj, sel); } - late final __objc_msgSend_741Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_741 = - __objc_msgSend_741Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_741Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_741 = __objc_msgSend_741Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_timeoutInterval1 = _registerName1("timeoutInterval"); late final _sel_mainDocumentURL1 = _registerName1("mainDocumentURL"); @@ -26154,16 +26160,16 @@ class PedometerBindings { return __objc_msgSend_742(obj, sel); } - late final __objc_msgSend_742Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_742 = - __objc_msgSend_742Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_742Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_742 = __objc_msgSend_742Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_allowsCellularAccess1 = _registerName1( "allowsCellularAccess", @@ -26180,16 +26186,16 @@ class PedometerBindings { return __objc_msgSend_743(obj, sel); } - late final __objc_msgSend_743Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_743 = - __objc_msgSend_743Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_743Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_743 = __objc_msgSend_743Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_requiresDNSSECValidation1 = _registerName1( "requiresDNSSECValidation", @@ -26213,42 +26219,42 @@ class PedometerBindings { return __objc_msgSend_744(obj, sel, property, key); } - late final __objc_msgSend_744Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_744 = - __objc_msgSend_744Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_744Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_744 = __objc_msgSend_744Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_streamStatus1 = _registerName1("streamStatus"); int _objc_msgSend_745(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_745(obj, sel); } - late final __objc_msgSend_745Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_745 = - __objc_msgSend_745Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_745Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_745 = __objc_msgSend_745Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_streamError1 = _registerName1("streamError"); late final _class_NSOutputStream1 = _getClass1("NSOutputStream"); @@ -26262,26 +26268,26 @@ class PedometerBindings { return __objc_msgSend_746(obj, sel, buffer, len); } - late final __objc_msgSend_746Ptr = _lookup< - ffi.NativeFunction< - ffi.Long Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_746 = - __objc_msgSend_746Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_746Ptr = + _lookup< + ffi.NativeFunction< + ffi.Long Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_746 = __objc_msgSend_746Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_hasSpaceAvailable1 = _registerName1("hasSpaceAvailable"); late final _sel_initToMemory1 = _registerName1("initToMemory"); @@ -26297,26 +26303,26 @@ class PedometerBindings { return __objc_msgSend_747(obj, sel, buffer, capacity); } - late final __objc_msgSend_747Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_747 = - __objc_msgSend_747Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_747Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_747 = __objc_msgSend_747Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithURL_append_1 = _registerName1("initWithURL:append:"); instancetype _objc_msgSend_748( @@ -26328,26 +26334,26 @@ class PedometerBindings { return __objc_msgSend_748(obj, sel, url, shouldAppend); } - late final __objc_msgSend_748Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_748 = - __objc_msgSend_748Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_748Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_748 = __objc_msgSend_748Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_initToFileAtPath_append_1 = _registerName1( "initToFileAtPath:append:", @@ -26384,30 +26390,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_749Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_749 = - __objc_msgSend_749Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_749Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_749 = __objc_msgSend_749Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _class_NSHost1 = _getClass1("NSHost"); late final _sel_getStreamsToHost_port_inputStream_outputStream_1 = @@ -26423,30 +26429,30 @@ class PedometerBindings { return __objc_msgSend_750(obj, sel, host, port, inputStream, outputStream); } - late final __objc_msgSend_750Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_750 = - __objc_msgSend_750Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_750Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_750 = __objc_msgSend_750Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_getBoundStreamsWithBufferSize_inputStream_outputStream_1 = _registerName1("getBoundStreamsWithBufferSize:inputStream:outputStream:"); @@ -26460,28 +26466,28 @@ class PedometerBindings { return __objc_msgSend_751(obj, sel, bufferSize, inputStream, outputStream); } - late final __objc_msgSend_751Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_751 = - __objc_msgSend_751Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_751Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_751 = __objc_msgSend_751Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_read_maxLength_1 = _registerName1("read:maxLength:"); late final _sel_getBuffer_length_1 = _registerName1("getBuffer:length:"); @@ -26494,26 +26500,26 @@ class PedometerBindings { return __objc_msgSend_752(obj, sel, buffer, len); } - late final __objc_msgSend_752Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_752 = - __objc_msgSend_752Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_752Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_752 = __objc_msgSend_752Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer, + ) + >(); late final _sel_hasBytesAvailable1 = _registerName1("hasBytesAvailable"); late final _sel_initWithFileAtPath_1 = _registerName1("initWithFileAtPath:"); @@ -26528,24 +26534,24 @@ class PedometerBindings { return __objc_msgSend_753(obj, sel, data); } - late final __objc_msgSend_753Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_753 = - __objc_msgSend_753Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_753Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_753 = __objc_msgSend_753Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_inputStreamWithFileAtPath_1 = _registerName1( "inputStreamWithFileAtPath:", @@ -26559,22 +26565,22 @@ class PedometerBindings { return __objc_msgSend_754(obj, sel); } - late final __objc_msgSend_754Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_754 = - __objc_msgSend_754Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_754Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_754 = __objc_msgSend_754Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_HTTPShouldHandleCookies1 = _registerName1( "HTTPShouldHandleCookies", @@ -26590,22 +26596,22 @@ class PedometerBindings { return __objc_msgSend_755(obj, sel); } - late final __objc_msgSend_755Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_755 = - __objc_msgSend_755Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_755Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_755 = __objc_msgSend_755Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_currentRequest1 = _registerName1("currentRequest"); late final _class_NSURLResponse1 = _getClass1("NSURLResponse"); @@ -26624,30 +26630,30 @@ class PedometerBindings { return __objc_msgSend_756(obj, sel, URL, MIMEType, length, name); } - late final __objc_msgSend_756Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_756 = - __objc_msgSend_756Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_756Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_756 = __objc_msgSend_756Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_MIMEType1 = _registerName1("MIMEType"); late final _sel_expectedContentLength1 = _registerName1( @@ -26663,22 +26669,22 @@ class PedometerBindings { return __objc_msgSend_757(obj, sel); } - late final __objc_msgSend_757Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_757 = - __objc_msgSend_757Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_757Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_757 = __objc_msgSend_757Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_progress1 = _registerName1("progress"); ffi.Pointer _objc_msgSend_758( @@ -26688,22 +26694,22 @@ class PedometerBindings { return __objc_msgSend_758(obj, sel); } - late final __objc_msgSend_758Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_758 = - __objc_msgSend_758Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_758Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_758 = __objc_msgSend_758Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_earliestBeginDate1 = _registerName1("earliestBeginDate"); late final _sel_setEarliestBeginDate_1 = _registerName1( @@ -26738,16 +26744,16 @@ class PedometerBindings { return __objc_msgSend_759(obj, sel); } - late final __objc_msgSend_759Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_759 = - __objc_msgSend_759Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_759Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_759 = __objc_msgSend_759Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_suspend1 = _registerName1("suspend"); late final _sel_priority1 = _registerName1("priority"); @@ -26760,20 +26766,20 @@ class PedometerBindings { return __objc_msgSend_760(obj, sel, value); } - late final __objc_msgSend_760Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Float, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_760 = - __objc_msgSend_760Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, double) - >(); + late final __objc_msgSend_760Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Float, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_760 = __objc_msgSend_760Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, double) + >(); late final _sel_prefersIncrementalDelivery1 = _registerName1( "prefersIncrementalDelivery", @@ -26793,26 +26799,26 @@ class PedometerBindings { return __objc_msgSend_761(obj, sel, cookies, task); } - late final __objc_msgSend_761Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_761 = - __objc_msgSend_761Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_761Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_761 = __objc_msgSend_761Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getCookiesForTask_completionHandler_1 = _registerName1( "getCookiesForTask:completionHandler:", @@ -26826,26 +26832,26 @@ class PedometerBindings { return __objc_msgSend_762(obj, sel, task, completionHandler); } - late final __objc_msgSend_762Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_762 = - __objc_msgSend_762Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_762Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_762 = __objc_msgSend_762Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _class_NSIndexPath1 = _getClass1("NSIndexPath"); late final _sel_indexPathWithIndex_1 = _registerName1("indexPathWithIndex:"); @@ -26861,26 +26867,26 @@ class PedometerBindings { return __objc_msgSend_763(obj, sel, indexes, length); } - late final __objc_msgSend_763Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_763 = - __objc_msgSend_763Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_763Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_763 = __objc_msgSend_763Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithIndexes_length_1 = _registerName1( "initWithIndexes:length:", @@ -26896,24 +26902,24 @@ class PedometerBindings { return __objc_msgSend_764(obj, sel, index); } - late final __objc_msgSend_764Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_764 = - __objc_msgSend_764Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_764Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_764 = __objc_msgSend_764Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_indexPathByRemovingLastIndex1 = _registerName1( "indexPathByRemovingLastIndex", @@ -26925,22 +26931,22 @@ class PedometerBindings { return __objc_msgSend_765(obj, sel); } - late final __objc_msgSend_765Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_765 = - __objc_msgSend_765Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_765Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_765 = __objc_msgSend_765Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_indexAtPosition_1 = _registerName1("indexAtPosition:"); late final _sel_getIndexes_range_1 = _registerName1("getIndexes:range:"); @@ -26953,26 +26959,26 @@ class PedometerBindings { return __objc_msgSend_766(obj, sel, indexes, positionRange); } - late final __objc_msgSend_766Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_766 = - __objc_msgSend_766Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_766Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_766 = __objc_msgSend_766Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); int _objc_msgSend_767( ffi.Pointer obj, @@ -26982,24 +26988,24 @@ class PedometerBindings { return __objc_msgSend_767(obj, sel, otherObject); } - late final __objc_msgSend_767Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_767 = - __objc_msgSend_767Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_767Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_767 = __objc_msgSend_767Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getIndexes_1 = _registerName1("getIndexes:"); void _objc_msgSend_768( @@ -27010,24 +27016,24 @@ class PedometerBindings { return __objc_msgSend_768(obj, sel, indexes); } - late final __objc_msgSend_768Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_768 = - __objc_msgSend_768Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_768Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_768 = __objc_msgSend_768Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSInflectionRule1 = _getClass1("NSInflectionRule"); late final _sel_automaticRule1 = _registerName1("automaticRule"); @@ -27038,22 +27044,22 @@ class PedometerBindings { return __objc_msgSend_769(obj, sel); } - late final __objc_msgSend_769Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_769 = - __objc_msgSend_769Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_769Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_769 = __objc_msgSend_769Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_canInflectLanguage_1 = _registerName1("canInflectLanguage:"); late final _sel_canInflectPreferredLocalization1 = _registerName1( @@ -27065,16 +27071,16 @@ class PedometerBindings { return __objc_msgSend_770(obj, sel); } - late final __objc_msgSend_770Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_770 = - __objc_msgSend_770Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_770Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_770 = __objc_msgSend_770Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setGrammaticalGender_1 = _registerName1( "setGrammaticalGender:", @@ -27087,36 +27093,36 @@ class PedometerBindings { return __objc_msgSend_771(obj, sel, value); } - late final __objc_msgSend_771Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_771 = - __objc_msgSend_771Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_771Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_771 = __objc_msgSend_771Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_partOfSpeech1 = _registerName1("partOfSpeech"); int _objc_msgSend_772(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_772(obj, sel); } - late final __objc_msgSend_772Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_772 = - __objc_msgSend_772Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_772Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_772 = __objc_msgSend_772Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setPartOfSpeech_1 = _registerName1("setPartOfSpeech:"); void _objc_msgSend_773( @@ -27127,36 +27133,36 @@ class PedometerBindings { return __objc_msgSend_773(obj, sel, value); } - late final __objc_msgSend_773Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_773 = - __objc_msgSend_773Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_773Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_773 = __objc_msgSend_773Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_number1 = _registerName1("number"); int _objc_msgSend_774(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_774(obj, sel); } - late final __objc_msgSend_774Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_774 = - __objc_msgSend_774Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_774Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_774 = __objc_msgSend_774Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setNumber_1 = _registerName1("setNumber:"); void _objc_msgSend_775( @@ -27167,36 +27173,36 @@ class PedometerBindings { return __objc_msgSend_775(obj, sel, value); } - late final __objc_msgSend_775Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_775 = - __objc_msgSend_775Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_775Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_775 = __objc_msgSend_775Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_grammaticalCase1 = _registerName1("grammaticalCase"); int _objc_msgSend_776(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_776(obj, sel); } - late final __objc_msgSend_776Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_776 = - __objc_msgSend_776Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_776Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_776 = __objc_msgSend_776Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setGrammaticalCase_1 = _registerName1("setGrammaticalCase:"); void _objc_msgSend_777( @@ -27207,36 +27213,36 @@ class PedometerBindings { return __objc_msgSend_777(obj, sel, value); } - late final __objc_msgSend_777Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_777 = - __objc_msgSend_777Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_777Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_777 = __objc_msgSend_777Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_determination1 = _registerName1("determination"); int _objc_msgSend_778(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_778(obj, sel); } - late final __objc_msgSend_778Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_778 = - __objc_msgSend_778Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_778Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_778 = __objc_msgSend_778Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setDetermination_1 = _registerName1("setDetermination:"); void _objc_msgSend_779( @@ -27247,36 +27253,36 @@ class PedometerBindings { return __objc_msgSend_779(obj, sel, value); } - late final __objc_msgSend_779Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_779 = - __objc_msgSend_779Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_779Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_779 = __objc_msgSend_779Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_grammaticalPerson1 = _registerName1("grammaticalPerson"); int _objc_msgSend_780(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_780(obj, sel); } - late final __objc_msgSend_780Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_780 = - __objc_msgSend_780Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_780Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_780 = __objc_msgSend_780Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setGrammaticalPerson_1 = _registerName1( "setGrammaticalPerson:", @@ -27289,36 +27295,36 @@ class PedometerBindings { return __objc_msgSend_781(obj, sel, value); } - late final __objc_msgSend_781Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_781 = - __objc_msgSend_781Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_781Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_781 = __objc_msgSend_781Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_pronounType1 = _registerName1("pronounType"); int _objc_msgSend_782(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_782(obj, sel); } - late final __objc_msgSend_782Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_782 = - __objc_msgSend_782Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_782Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_782 = __objc_msgSend_782Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setPronounType_1 = _registerName1("setPronounType:"); void _objc_msgSend_783( @@ -27329,36 +27335,36 @@ class PedometerBindings { return __objc_msgSend_783(obj, sel, value); } - late final __objc_msgSend_783Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_783 = - __objc_msgSend_783Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_783Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_783 = __objc_msgSend_783Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_definiteness1 = _registerName1("definiteness"); int _objc_msgSend_784(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_784(obj, sel); } - late final __objc_msgSend_784Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_784 = - __objc_msgSend_784Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_784Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_784 = __objc_msgSend_784Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setDefiniteness_1 = _registerName1("setDefiniteness:"); void _objc_msgSend_785( @@ -27369,20 +27375,20 @@ class PedometerBindings { return __objc_msgSend_785(obj, sel, value); } - late final __objc_msgSend_785Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_785 = - __objc_msgSend_785Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_785Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_785 = __objc_msgSend_785Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _class_NSMorphologyCustomPronoun1 = _getClass1( "NSMorphologyCustomPronoun", @@ -27418,24 +27424,24 @@ class PedometerBindings { return __objc_msgSend_786(obj, sel, language); } - late final __objc_msgSend_786Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_786 = - __objc_msgSend_786Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_786Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_786 = __objc_msgSend_786Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setCustomPronoun_forLanguage_error_1 = _registerName1( "setCustomPronoun:forLanguage:error:", @@ -27450,28 +27456,28 @@ class PedometerBindings { return __objc_msgSend_787(obj, sel, features, language, error); } - late final __objc_msgSend_787Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_787 = - __objc_msgSend_787Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_787Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_787 = __objc_msgSend_787Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_isUnspecified1 = _registerName1("isUnspecified"); late final _sel_userMorphology1 = _registerName1("userMorphology"); @@ -27482,22 +27488,22 @@ class PedometerBindings { return __objc_msgSend_788(obj, sel); } - late final __objc_msgSend_788Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_788 = - __objc_msgSend_788Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_788Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_788 = __objc_msgSend_788Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSOperationQueue1 = _getClass1("NSOperationQueue"); late final _class_NSOperation1 = _getClass1("NSOperation"); @@ -27513,24 +27519,24 @@ class PedometerBindings { return __objc_msgSend_789(obj, sel, op); } - late final __objc_msgSend_789Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_789 = - __objc_msgSend_789Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_789Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_789 = __objc_msgSend_789Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeDependency_1 = _registerName1("removeDependency:"); late final _sel_dependencies1 = _registerName1("dependencies"); @@ -27539,16 +27545,16 @@ class PedometerBindings { return __objc_msgSend_790(obj, sel); } - late final __objc_msgSend_790Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_790 = - __objc_msgSend_790Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_790Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_790 = __objc_msgSend_790Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setQueuePriority_1 = _registerName1("setQueuePriority:"); void _objc_msgSend_791( @@ -27559,20 +27565,20 @@ class PedometerBindings { return __objc_msgSend_791(obj, sel, value); } - late final __objc_msgSend_791Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_791 = - __objc_msgSend_791Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_791Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_791 = __objc_msgSend_791Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_completionBlock1 = _registerName1("completionBlock"); late final _sel_setCompletionBlock_1 = _registerName1("setCompletionBlock:"); @@ -27590,26 +27596,26 @@ class PedometerBindings { return __objc_msgSend_792(obj, sel, ops, wait); } - late final __objc_msgSend_792Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_792 = - __objc_msgSend_792Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_792Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_792 = __objc_msgSend_792Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_addOperationWithBlock_1 = _registerName1( "addOperationWithBlock:", @@ -27631,22 +27637,22 @@ class PedometerBindings { return __objc_msgSend_793(obj, sel); } - late final __objc_msgSend_793Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_793 = - __objc_msgSend_793Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_793Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_793 = __objc_msgSend_793Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setUnderlyingQueue_1 = _registerName1("setUnderlyingQueue:"); void _objc_msgSend_794( @@ -27657,24 +27663,24 @@ class PedometerBindings { return __objc_msgSend_794(obj, sel, value); } - late final __objc_msgSend_794Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_794 = - __objc_msgSend_794Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_794Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_794 = __objc_msgSend_794Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_cancelAllOperations1 = _registerName1("cancelAllOperations"); late final _sel_waitUntilAllOperationsAreFinished1 = _registerName1( @@ -27688,22 +27694,22 @@ class PedometerBindings { return __objc_msgSend_795(obj, sel); } - late final __objc_msgSend_795Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_795 = - __objc_msgSend_795Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_795Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_795 = __objc_msgSend_795Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_mainQueue1 = _registerName1("mainQueue"); ffi.Pointer _objc_msgSend_796( @@ -27713,22 +27719,22 @@ class PedometerBindings { return __objc_msgSend_796(obj, sel); } - late final __objc_msgSend_796Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_796 = - __objc_msgSend_796Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_796Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_796 = __objc_msgSend_796Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_operations1 = _registerName1("operations"); late final _sel_operationCount1 = _registerName1("operationCount"); @@ -27742,24 +27748,24 @@ class PedometerBindings { return __objc_msgSend_797(obj, sel, options); } - late final __objc_msgSend_797Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_797 = - __objc_msgSend_797Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_797Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_797 = __objc_msgSend_797Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _class_NSPointerFunctions1 = _getClass1("NSPointerFunctions"); late final _sel_pointerFunctionsWithOptions_1 = _registerName1( @@ -27773,24 +27779,24 @@ class PedometerBindings { return __objc_msgSend_798(obj, sel, options); } - late final __objc_msgSend_798Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_798 = - __objc_msgSend_798Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_798Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_798 = __objc_msgSend_798Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_hashFunction1 = _registerName1("hashFunction"); ffi.Pointer< @@ -27807,40 +27813,40 @@ class PedometerBindings { return __objc_msgSend_799(obj, sel); } - late final __objc_msgSend_799Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer< + late final __objc_msgSend_799Ptr = + _lookup< ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - > - Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_799 = - __objc_msgSend_799Ptr - .asFunction< - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) > - Function(ffi.Pointer, ffi.Pointer) - >(); + > + Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_799 = __objc_msgSend_799Ptr + .asFunction< + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + > + Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setHashFunction_1 = _registerName1("setHashFunction:"); void _objc_msgSend_800( @@ -27861,46 +27867,46 @@ class PedometerBindings { return __objc_msgSend_800(obj, sel, value); } - late final __objc_msgSend_800Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - >, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_800 = - __objc_msgSend_800Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - >, - ) - >(); + late final __objc_msgSend_800Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_800 = __objc_msgSend_800Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >, + ) + >(); late final _sel_isEqualFunction1 = _registerName1("isEqualFunction"); ffi.Pointer< @@ -27918,42 +27924,42 @@ class PedometerBindings { return __objc_msgSend_801(obj, sel); } - late final __objc_msgSend_801Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer< + late final __objc_msgSend_801Ptr = + _lookup< ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - > - Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_801 = - __objc_msgSend_801Ptr - .asFunction< - ffi.Pointer< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > + ffi.Pointer< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) > - Function(ffi.Pointer, ffi.Pointer) - >(); + > + Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_801 = __objc_msgSend_801Ptr + .asFunction< + ffi.Pointer< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + > + Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setIsEqualFunction_1 = _registerName1("setIsEqualFunction:"); void _objc_msgSend_802( @@ -27975,48 +27981,48 @@ class PedometerBindings { return __objc_msgSend_802(obj, sel, value); } - late final __objc_msgSend_802Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - >, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_802 = - __objc_msgSend_802Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - >, - ) - >(); + late final __objc_msgSend_802Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_802 = __objc_msgSend_802Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >, + ) + >(); late final _sel_sizeFunction1 = _registerName1("sizeFunction"); ffi.Pointer< @@ -28026,24 +28032,22 @@ class PedometerBindings { return __objc_msgSend_803(obj, sel); } - late final __objc_msgSend_803Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer< - ffi.NativeFunction)> - > - Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_803 = - __objc_msgSend_803Ptr - .asFunction< - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - > - Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_803Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer< + ffi.NativeFunction)> + > + Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_803 = __objc_msgSend_803Ptr + .asFunction< + ffi.Pointer< + ffi.NativeFunction)> + > + Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setSizeFunction_1 = _registerName1("setSizeFunction:"); void _objc_msgSend_804( @@ -28057,30 +28061,30 @@ class PedometerBindings { return __objc_msgSend_804(obj, sel, value); } - late final __objc_msgSend_804Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction)> - >, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_804 = - __objc_msgSend_804Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - >(); + late final __objc_msgSend_804Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_804 = __objc_msgSend_804Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction)> + >, + ) + >(); late final _sel_descriptionFunction1 = _registerName1("descriptionFunction"); ffi.Pointer< @@ -28090,26 +28094,26 @@ class PedometerBindings { return __objc_msgSend_805(obj, sel); } - late final __objc_msgSend_805Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer< + late final __objc_msgSend_805Ptr = + _lookup< ffi.NativeFunction< - ffi.Pointer Function(ffi.Pointer) - > - > - Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_805 = - __objc_msgSend_805Ptr - .asFunction< - ffi.Pointer< - ffi.NativeFunction< - ffi.Pointer Function(ffi.Pointer) - > + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) > - Function(ffi.Pointer, ffi.Pointer) - >(); + > + Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_805 = __objc_msgSend_805Ptr + .asFunction< + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) + > + > + Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setDescriptionFunction_1 = _registerName1( "setDescriptionFunction:", @@ -28127,32 +28131,32 @@ class PedometerBindings { return __objc_msgSend_806(obj, sel, value); } - late final __objc_msgSend_806Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Pointer Function(ffi.Pointer) - > - >, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_806 = - __objc_msgSend_806Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Pointer Function(ffi.Pointer) - > - >, - ) - >(); + late final __objc_msgSend_806Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) + > + >, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_806 = __objc_msgSend_806Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function(ffi.Pointer) + > + >, + ) + >(); late final _sel_relinquishFunction1 = _registerName1("relinquishFunction"); ffi.Pointer< @@ -28169,40 +28173,40 @@ class PedometerBindings { return __objc_msgSend_807(obj, sel); } - late final __objc_msgSend_807Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer< + late final __objc_msgSend_807Ptr = + _lookup< ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - > - Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_807 = - __objc_msgSend_807Ptr - .asFunction< - ffi.Pointer< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > + ffi.Pointer< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) > - Function(ffi.Pointer, ffi.Pointer) - >(); + > + Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_807 = __objc_msgSend_807Ptr + .asFunction< + ffi.Pointer< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + > + Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setRelinquishFunction_1 = _registerName1( "setRelinquishFunction:", @@ -28225,46 +28229,46 @@ class PedometerBindings { return __objc_msgSend_808(obj, sel, value); } - late final __objc_msgSend_808Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - >, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_808 = - __objc_msgSend_808Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ) - > - >, - ) - >(); + late final __objc_msgSend_808Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_808 = __objc_msgSend_808Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ) + > + >, + ) + >(); late final _sel_acquireFunction1 = _registerName1("acquireFunction"); ffi.Pointer< @@ -28282,42 +28286,42 @@ class PedometerBindings { return __objc_msgSend_809(obj, sel); } - late final __objc_msgSend_809Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer< + late final __objc_msgSend_809Ptr = + _lookup< ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ffi.Bool, - ) - > - > - Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_809 = - __objc_msgSend_809Ptr - .asFunction< - ffi.Pointer< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ffi.Bool, - ) - > + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ffi.Bool, + ) > - Function(ffi.Pointer, ffi.Pointer) - >(); + > + Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_809 = __objc_msgSend_809Ptr + .asFunction< + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ffi.Bool, + ) + > + > + Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setAcquireFunction_1 = _registerName1("setAcquireFunction:"); void _objc_msgSend_810( @@ -28339,48 +28343,48 @@ class PedometerBindings { return __objc_msgSend_810(obj, sel, value); } - late final __objc_msgSend_810Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ffi.Bool, - ) - > - >, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_810 = - __objc_msgSend_810Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer< - ffi.NativeFunction< - ffi.UnsignedLong Function(ffi.Pointer) - > - >, - ffi.Bool, - ) - > - >, - ) - >(); + late final __objc_msgSend_810Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ffi.Bool, + ) + > + >, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_810 = __objc_msgSend_810Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer< + ffi.NativeFunction< + ffi.UnsignedLong Function(ffi.Pointer) + > + >, + ffi.Bool, + ) + > + >, + ) + >(); late final _sel_usesStrongWriteBarrier1 = _registerName1( "usesStrongWriteBarrier", @@ -28405,24 +28409,24 @@ class PedometerBindings { return __objc_msgSend_811(obj, sel, functions); } - late final __objc_msgSend_811Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_811 = - __objc_msgSend_811Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_811Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_811 = __objc_msgSend_811Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pointerArrayWithOptions_1 = _registerName1( "pointerArrayWithOptions:", @@ -28435,24 +28439,24 @@ class PedometerBindings { return __objc_msgSend_812(obj, sel, options); } - late final __objc_msgSend_812Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_812 = - __objc_msgSend_812Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_812Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_812 = __objc_msgSend_812Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_pointerArrayWithPointerFunctions_1 = _registerName1( "pointerArrayWithPointerFunctions:", @@ -28465,24 +28469,24 @@ class PedometerBindings { return __objc_msgSend_813(obj, sel, functions); } - late final __objc_msgSend_813Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_813 = - __objc_msgSend_813Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_813Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_813 = __objc_msgSend_813Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pointerFunctions1 = _registerName1("pointerFunctions"); ffi.Pointer _objc_msgSend_814( @@ -28492,22 +28496,22 @@ class PedometerBindings { return __objc_msgSend_814(obj, sel); } - late final __objc_msgSend_814Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_814 = - __objc_msgSend_814Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_814Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_814 = __objc_msgSend_814Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_pointerAtIndex_1 = _registerName1("pointerAtIndex:"); ffi.Pointer _objc_msgSend_815( @@ -28518,24 +28522,24 @@ class PedometerBindings { return __objc_msgSend_815(obj, sel, index); } - late final __objc_msgSend_815Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_815 = - __objc_msgSend_815Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_815Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_815 = __objc_msgSend_815Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_addPointer_1 = _registerName1("addPointer:"); late final _sel_removePointerAtIndex_1 = _registerName1( @@ -28556,26 +28560,26 @@ class PedometerBindings { return __objc_msgSend_816(obj, sel, index, item); } - late final __objc_msgSend_816Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_816 = - __objc_msgSend_816Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_816Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_816 = __objc_msgSend_816Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_compact1 = _registerName1("compact"); late final _sel_setCount_1 = _registerName1("setCount:"); @@ -28595,22 +28599,22 @@ class PedometerBindings { return __objc_msgSend_817(obj, sel); } - late final __objc_msgSend_817Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_817 = - __objc_msgSend_817Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_817Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_817 = __objc_msgSend_817Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_weakObjectsPointerArray1 = _registerName1( "weakObjectsPointerArray", @@ -28624,22 +28628,22 @@ class PedometerBindings { return __objc_msgSend_818(obj, sel); } - late final __objc_msgSend_818Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_818 = - __objc_msgSend_818Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_818Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_818 = __objc_msgSend_818Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_environment1 = _registerName1("environment"); late final _sel_arguments1 = _registerName1("arguments"); @@ -28665,22 +28669,22 @@ class PedometerBindings { return __objc_msgSend_819(obj, sel); } - late final __objc_msgSend_819Ptr = _lookup< - ffi.NativeFunction< - NSOperatingSystemVersion Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_819 = - __objc_msgSend_819Ptr - .asFunction< - NSOperatingSystemVersion Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_819Ptr = + _lookup< + ffi.NativeFunction< + NSOperatingSystemVersion Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_819 = __objc_msgSend_819Ptr + .asFunction< + NSOperatingSystemVersion Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_819_stret( ffi.Pointer stret, @@ -28690,24 +28694,24 @@ class PedometerBindings { return __objc_msgSend_819_stret(stret, obj, sel); } - late final __objc_msgSend_819_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_819_stret = - __objc_msgSend_819_stretPtr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_819_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_819_stret = __objc_msgSend_819_stretPtr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_processorCount1 = _registerName1("processorCount"); late final _sel_activeProcessorCount1 = _registerName1( @@ -28725,24 +28729,24 @@ class PedometerBindings { return __objc_msgSend_820(obj, sel, version); } - late final __objc_msgSend_820Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - NSOperatingSystemVersion, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_820 = - __objc_msgSend_820Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - NSOperatingSystemVersion, - ) - >(); + late final __objc_msgSend_820Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + NSOperatingSystemVersion, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_820 = __objc_msgSend_820Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + NSOperatingSystemVersion, + ) + >(); late final _sel_systemUptime1 = _registerName1("systemUptime"); late final _sel_disableSuddenTermination1 = _registerName1( @@ -28775,26 +28779,26 @@ class PedometerBindings { return __objc_msgSend_821(obj, sel, options, reason); } - late final __objc_msgSend_821Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_821 = - __objc_msgSend_821Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_821Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_821 = __objc_msgSend_821Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_endActivity_1 = _registerName1("endActivity:"); late final _sel_performActivityWithOptions_reason_usingBlock_1 = @@ -28809,28 +28813,28 @@ class PedometerBindings { return __objc_msgSend_822(obj, sel, options, reason, block); } - late final __objc_msgSend_822Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_822 = - __objc_msgSend_822Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_822Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_822 = __objc_msgSend_822Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_performExpiringActivityWithReason_usingBlock_1 = _registerName1("performExpiringActivityWithReason:usingBlock:"); @@ -28843,26 +28847,26 @@ class PedometerBindings { return __objc_msgSend_823(obj, sel, reason, block); } - late final __objc_msgSend_823Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_823 = - __objc_msgSend_823Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_823Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_823 = __objc_msgSend_823Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_userName1 = _registerName1("userName"); late final _sel_fullUserName1 = _registerName1("fullUserName"); @@ -28871,16 +28875,16 @@ class PedometerBindings { return __objc_msgSend_824(obj, sel); } - late final __objc_msgSend_824Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_824 = - __objc_msgSend_824Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_824Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_824 = __objc_msgSend_824Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_isLowPowerModeEnabled1 = _registerName1( "isLowPowerModeEnabled", @@ -28893,16 +28897,16 @@ class PedometerBindings { return __objc_msgSend_825(obj, sel); } - late final __objc_msgSend_825Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_825 = - __objc_msgSend_825Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_825Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_825 = __objc_msgSend_825Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_range1 = _registerName1("range"); late final _sel_orthography1 = _registerName1("orthography"); @@ -28913,22 +28917,22 @@ class PedometerBindings { return __objc_msgSend_826(obj, sel); } - late final __objc_msgSend_826Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_826 = - __objc_msgSend_826Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_826Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_826 = __objc_msgSend_826Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_grammarDetails1 = _registerName1("grammarDetails"); late final _sel_duration1 = _registerName1("duration"); @@ -28949,28 +28953,28 @@ class PedometerBindings { return __objc_msgSend_827(obj, sel, pattern, options, error); } - late final __objc_msgSend_827Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_827 = - __objc_msgSend_827Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_827Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_827 = __objc_msgSend_827Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_initWithPattern_options_error_1 = _registerName1( "initWithPattern:options:error:", @@ -28985,28 +28989,28 @@ class PedometerBindings { return __objc_msgSend_828(obj, sel, pattern, options, error); } - late final __objc_msgSend_828Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_828 = - __objc_msgSend_828Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_828Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_828 = __objc_msgSend_828Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_pattern1 = _registerName1("pattern"); late final _sel_options1 = _registerName1("options"); @@ -29014,16 +29018,16 @@ class PedometerBindings { return __objc_msgSend_829(obj, sel); } - late final __objc_msgSend_829Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_829 = - __objc_msgSend_829Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_829Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_829 = __objc_msgSend_829Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_numberOfCaptureGroups1 = _registerName1( "numberOfCaptureGroups", @@ -29044,30 +29048,30 @@ class PedometerBindings { return __objc_msgSend_830(obj, sel, string, options, range, block); } - late final __objc_msgSend_830Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_830 = - __objc_msgSend_830Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_830Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_830 = __objc_msgSend_830Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_matchesInString_options_range_1 = _registerName1( "matchesInString:options:range:", @@ -29082,28 +29086,28 @@ class PedometerBindings { return __objc_msgSend_831(obj, sel, string, options, range); } - late final __objc_msgSend_831Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_831 = - __objc_msgSend_831Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_831Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_831 = __objc_msgSend_831Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_numberOfMatchesInString_options_range_1 = _registerName1( "numberOfMatchesInString:options:range:", @@ -29118,28 +29122,28 @@ class PedometerBindings { return __objc_msgSend_832(obj, sel, string, options, range); } - late final __objc_msgSend_832Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_832 = - __objc_msgSend_832Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_832Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_832 = __objc_msgSend_832Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_firstMatchInString_options_range_1 = _registerName1( "firstMatchInString:options:range:", @@ -29154,28 +29158,28 @@ class PedometerBindings { return __objc_msgSend_833(obj, sel, string, options, range); } - late final __objc_msgSend_833Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_833 = - __objc_msgSend_833Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_833Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_833 = __objc_msgSend_833Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_rangeOfFirstMatchInString_options_range_1 = _registerName1( "rangeOfFirstMatchInString:options:range:", @@ -29190,28 +29194,28 @@ class PedometerBindings { return __objc_msgSend_834(obj, sel, string, options, range); } - late final __objc_msgSend_834Ptr = _lookup< - ffi.NativeFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_834 = - __objc_msgSend_834Ptr - .asFunction< - _NSRange Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_834Ptr = + _lookup< + ffi.NativeFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_834 = __objc_msgSend_834Ptr + .asFunction< + _NSRange Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); void _objc_msgSend_834_stret( ffi.Pointer<_NSRange> stret, @@ -29224,30 +29228,30 @@ class PedometerBindings { return __objc_msgSend_834_stret(stret, obj, sel, string, options, range); } - late final __objc_msgSend_834_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_834_stret = - __objc_msgSend_834_stretPtr - .asFunction< - void Function( - ffi.Pointer<_NSRange>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ) - >(); + late final __objc_msgSend_834_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_834_stret = __objc_msgSend_834_stretPtr + .asFunction< + void Function( + ffi.Pointer<_NSRange>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ) + >(); late final _sel_stringByReplacingMatchesInString_options_range_withTemplate_1 = _registerName1( @@ -29264,30 +29268,30 @@ class PedometerBindings { return __objc_msgSend_835(obj, sel, string, options, range, templ); } - late final __objc_msgSend_835Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_835 = - __objc_msgSend_835Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_835Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_835 = __objc_msgSend_835Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_replaceMatchesInString_options_range_withTemplate_1 = _registerName1("replaceMatchesInString:options:range:withTemplate:"); @@ -29302,30 +29306,30 @@ class PedometerBindings { return __objc_msgSend_836(obj, sel, string, options, range, templ); } - late final __objc_msgSend_836Ptr = _lookup< - ffi.NativeFunction< - ffi.UnsignedLong Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_836 = - __objc_msgSend_836Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_836Ptr = + _lookup< + ffi.NativeFunction< + ffi.UnsignedLong Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_836 = __objc_msgSend_836Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_replacementStringForResult_inString_offset_template_1 = _registerName1("replacementStringForResult:inString:offset:template:"); @@ -29340,30 +29344,30 @@ class PedometerBindings { return __objc_msgSend_837(obj, sel, result, string, offset, templ); } - late final __objc_msgSend_837Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_837 = - __objc_msgSend_837Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_837Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_837 = __objc_msgSend_837Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_escapedTemplateForString_1 = _registerName1( "escapedTemplateForString:", @@ -29376,22 +29380,22 @@ class PedometerBindings { return __objc_msgSend_838(obj, sel); } - late final __objc_msgSend_838Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_838 = - __objc_msgSend_838Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_838Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_838 = __objc_msgSend_838Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_phoneNumber1 = _registerName1("phoneNumber"); late final _sel_numberOfRanges1 = _registerName1("numberOfRanges"); @@ -29408,24 +29412,24 @@ class PedometerBindings { return __objc_msgSend_839(obj, sel, offset); } - late final __objc_msgSend_839Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_839 = - __objc_msgSend_839Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_839Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_839 = __objc_msgSend_839Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_addressComponents1 = _registerName1("addressComponents"); late final _sel_orthographyCheckingResultWithRange_orthography_1 = @@ -29439,26 +29443,26 @@ class PedometerBindings { return __objc_msgSend_840(obj, sel, range, orthography); } - late final __objc_msgSend_840Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_840 = - __objc_msgSend_840Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_840Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_840 = __objc_msgSend_840Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_spellCheckingResultWithRange_1 = _registerName1( "spellCheckingResultWithRange:", @@ -29471,24 +29475,24 @@ class PedometerBindings { return __objc_msgSend_841(obj, sel, range); } - late final __objc_msgSend_841Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_841 = - __objc_msgSend_841Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ) - >(); + late final __objc_msgSend_841Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_841 = __objc_msgSend_841Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ) + >(); late final _sel_grammarCheckingResultWithRange_details_1 = _registerName1( "grammarCheckingResultWithRange:details:", @@ -29502,26 +29506,26 @@ class PedometerBindings { return __objc_msgSend_842(obj, sel, range, details); } - late final __objc_msgSend_842Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_842 = - __objc_msgSend_842Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_842Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_842 = __objc_msgSend_842Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_dateCheckingResultWithRange_date_1 = _registerName1( "dateCheckingResultWithRange:date:", @@ -29535,26 +29539,26 @@ class PedometerBindings { return __objc_msgSend_843(obj, sel, range, date); } - late final __objc_msgSend_843Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_843 = - __objc_msgSend_843Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_843Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_843 = __objc_msgSend_843Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_dateCheckingResultWithRange_date_timeZone_duration_1 = _registerName1("dateCheckingResultWithRange:date:timeZone:duration:"); @@ -29569,30 +29573,30 @@ class PedometerBindings { return __objc_msgSend_844(obj, sel, range, date, timeZone, duration); } - late final __objc_msgSend_844Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_844 = - __objc_msgSend_844Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.Pointer, - double, - ) - >(); + late final __objc_msgSend_844Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_844 = __objc_msgSend_844Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.Pointer, + double, + ) + >(); late final _sel_addressCheckingResultWithRange_components_1 = _registerName1( "addressCheckingResultWithRange:components:", @@ -29606,26 +29610,26 @@ class PedometerBindings { return __objc_msgSend_845(obj, sel, range, components); } - late final __objc_msgSend_845Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_845 = - __objc_msgSend_845Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_845Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_845 = __objc_msgSend_845Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_linkCheckingResultWithRange_URL_1 = _registerName1( "linkCheckingResultWithRange:URL:", @@ -29639,26 +29643,26 @@ class PedometerBindings { return __objc_msgSend_846(obj, sel, range, url); } - late final __objc_msgSend_846Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_846 = - __objc_msgSend_846Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_846Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_846 = __objc_msgSend_846Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_quoteCheckingResultWithRange_replacementString_1 = _registerName1("quoteCheckingResultWithRange:replacementString:"); @@ -29671,26 +29675,26 @@ class PedometerBindings { return __objc_msgSend_847(obj, sel, range, replacementString); } - late final __objc_msgSend_847Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_847 = - __objc_msgSend_847Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_847Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_847 = __objc_msgSend_847Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(); late final _sel_dashCheckingResultWithRange_replacementString_1 = _registerName1("dashCheckingResultWithRange:replacementString:"); @@ -29718,28 +29722,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_848Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_848 = - __objc_msgSend_848Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_848Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_848 = __objc_msgSend_848Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_regularExpressionCheckingResultWithRanges_count_regularExpression_1 = _registerName1( @@ -29755,28 +29759,28 @@ class PedometerBindings { return __objc_msgSend_849(obj, sel, ranges, count, regularExpression); } - late final __objc_msgSend_849Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_NSRange>, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_849 = - __objc_msgSend_849Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_NSRange>, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_849Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_NSRange>, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_849 = __objc_msgSend_849Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_NSRange>, + int, + ffi.Pointer, + ) + >(); late final _sel_phoneNumberCheckingResultWithRange_phoneNumber_1 = _registerName1("phoneNumberCheckingResultWithRange:phoneNumber:"); @@ -29791,22 +29795,22 @@ class PedometerBindings { return __objc_msgSend_850(obj, sel); } - late final __objc_msgSend_850Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_850 = - __objc_msgSend_850Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_850Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_850 = __objc_msgSend_850Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setSharedURLCache_1 = _registerName1("setSharedURLCache:"); void _objc_msgSend_851( @@ -29817,24 +29821,24 @@ class PedometerBindings { return __objc_msgSend_851(obj, sel, value); } - late final __objc_msgSend_851Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_851 = - __objc_msgSend_851Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_851Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_851 = __objc_msgSend_851Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithMemoryCapacity_diskCapacity_diskPath_1 = _registerName1("initWithMemoryCapacity:diskCapacity:diskPath:"); @@ -29848,28 +29852,28 @@ class PedometerBindings { return __objc_msgSend_852(obj, sel, memoryCapacity, diskCapacity, path); } - late final __objc_msgSend_852Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_852 = - __objc_msgSend_852Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_852Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_852 = __objc_msgSend_852Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ) + >(); late final _sel_initWithMemoryCapacity_diskCapacity_directoryURL_1 = _registerName1("initWithMemoryCapacity:diskCapacity:directoryURL:"); @@ -29889,28 +29893,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_853Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_853 = - __objc_msgSend_853Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_853Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_853 = __objc_msgSend_853Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ) + >(); late final _class_NSCachedURLResponse1 = _getClass1("NSCachedURLResponse"); late final _sel_initWithResponse_data_1 = _registerName1( @@ -29925,26 +29929,26 @@ class PedometerBindings { return __objc_msgSend_854(obj, sel, response, data); } - late final __objc_msgSend_854Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_854 = - __objc_msgSend_854Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_854Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_854 = __objc_msgSend_854Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithResponse_data_userInfo_storagePolicy_1 = _registerName1("initWithResponse:data:userInfo:storagePolicy:"); @@ -29966,30 +29970,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_855Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_855 = - __objc_msgSend_855Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_855Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_855 = __objc_msgSend_855Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); ffi.Pointer _objc_msgSend_856( ffi.Pointer obj, @@ -29998,38 +30002,38 @@ class PedometerBindings { return __objc_msgSend_856(obj, sel); } - late final __objc_msgSend_856Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_856 = - __objc_msgSend_856Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_856Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_856 = __objc_msgSend_856Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_storagePolicy1 = _registerName1("storagePolicy"); int _objc_msgSend_857(ffi.Pointer obj, ffi.Pointer sel) { return __objc_msgSend_857(obj, sel); } - late final __objc_msgSend_857Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_857 = - __objc_msgSend_857Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_857Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_857 = __objc_msgSend_857Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_cachedResponseForRequest_1 = _registerName1( "cachedResponseForRequest:", @@ -30042,24 +30046,24 @@ class PedometerBindings { return __objc_msgSend_858(obj, sel, request); } - late final __objc_msgSend_858Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_858 = - __objc_msgSend_858Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_858Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_858 = __objc_msgSend_858Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_storeCachedResponse_forRequest_1 = _registerName1( "storeCachedResponse:forRequest:", @@ -30073,26 +30077,26 @@ class PedometerBindings { return __objc_msgSend_859(obj, sel, cachedResponse, request); } - late final __objc_msgSend_859Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_859 = - __objc_msgSend_859Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_859Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_859 = __objc_msgSend_859Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeCachedResponseForRequest_1 = _registerName1( "removeCachedResponseForRequest:", @@ -30105,24 +30109,24 @@ class PedometerBindings { return __objc_msgSend_860(obj, sel, request); } - late final __objc_msgSend_860Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_860 = - __objc_msgSend_860Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_860Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_860 = __objc_msgSend_860Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeAllCachedResponses1 = _registerName1( "removeAllCachedResponses", @@ -30149,26 +30153,26 @@ class PedometerBindings { return __objc_msgSend_861(obj, sel, cachedResponse, dataTask); } - late final __objc_msgSend_861Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_861 = - __objc_msgSend_861Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_861Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_861 = __objc_msgSend_861Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getCachedResponseForDataTask_completionHandler_1 = _registerName1("getCachedResponseForDataTask:completionHandler:"); @@ -30176,31 +30180,31 @@ class PedometerBindings { ffi.Pointer obj, ffi.Pointer sel, ffi.Pointer dataTask, - ffi.Pointer<_ObjCBlock> completionHandler, - ) { - return __objc_msgSend_862(obj, sel, dataTask, completionHandler); - } - - late final __objc_msgSend_862Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_862 = - __objc_msgSend_862Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + ffi.Pointer<_ObjCBlock> completionHandler, + ) { + return __objc_msgSend_862(obj, sel, dataTask, completionHandler); + } + + late final __objc_msgSend_862Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_862 = __objc_msgSend_862Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_removeCachedResponseForDataTask_1 = _registerName1( "removeCachedResponseForDataTask:", @@ -30213,24 +30217,24 @@ class PedometerBindings { return __objc_msgSend_863(obj, sel, dataTask); } - late final __objc_msgSend_863Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_863 = - __objc_msgSend_863Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_863Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_863 = __objc_msgSend_863Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLConnection1 = _getClass1("NSURLConnection"); late final _sel_initWithRequest_delegate_startImmediately_1 = _registerName1( @@ -30246,28 +30250,28 @@ class PedometerBindings { return __objc_msgSend_864(obj, sel, request, delegate, startImmediately); } - late final __objc_msgSend_864Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_864 = - __objc_msgSend_864Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - ) - >(); + late final __objc_msgSend_864Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_864 = __objc_msgSend_864Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + ) + >(); late final _sel_initWithRequest_delegate_1 = _registerName1( "initWithRequest:delegate:", @@ -30281,26 +30285,26 @@ class PedometerBindings { return __objc_msgSend_865(obj, sel, request, delegate); } - late final __objc_msgSend_865Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_865 = - __objc_msgSend_865Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_865Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_865 = __objc_msgSend_865Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_connectionWithRequest_delegate_1 = _registerName1( "connectionWithRequest:delegate:", @@ -30314,26 +30318,26 @@ class PedometerBindings { return __objc_msgSend_866(obj, sel, request, delegate); } - late final __objc_msgSend_866Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_866 = - __objc_msgSend_866Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_866Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_866 = __objc_msgSend_866Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); ffi.Pointer _objc_msgSend_867( ffi.Pointer obj, @@ -30342,22 +30346,22 @@ class PedometerBindings { return __objc_msgSend_867(obj, sel); } - late final __objc_msgSend_867Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_867 = - __objc_msgSend_867Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_867Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_867 = __objc_msgSend_867Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_unscheduleFromRunLoop_forMode_1 = _registerName1( "unscheduleFromRunLoop:forMode:", @@ -30371,24 +30375,24 @@ class PedometerBindings { return __objc_msgSend_868(obj, sel, queue); } - late final __objc_msgSend_868Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_868 = - __objc_msgSend_868Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_868Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_868 = __objc_msgSend_868Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_canHandleRequest_1 = _registerName1("canHandleRequest:"); bool _objc_msgSend_869( @@ -30399,24 +30403,24 @@ class PedometerBindings { return __objc_msgSend_869(obj, sel, request); } - late final __objc_msgSend_869Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_869 = - __objc_msgSend_869Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_869Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_869 = __objc_msgSend_869Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sendSynchronousRequest_returningResponse_error_1 = _registerName1("sendSynchronousRequest:returningResponse:error:"); @@ -30430,28 +30434,28 @@ class PedometerBindings { return __objc_msgSend_870(obj, sel, request, response, error); } - late final __objc_msgSend_870Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_870 = - __objc_msgSend_870Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_870Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_870 = __objc_msgSend_870Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_sendAsynchronousRequest_queue_completionHandler_1 = _registerName1("sendAsynchronousRequest:queue:completionHandler:"); @@ -30465,28 +30469,28 @@ class PedometerBindings { return __objc_msgSend_871(obj, sel, request, queue, handler); } - late final __objc_msgSend_871Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_871 = - __objc_msgSend_871Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_871Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_871 = __objc_msgSend_871Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _class_NSURLCredential1 = _getClass1("NSURLCredential"); late final _sel_persistence1 = _registerName1("persistence"); @@ -30494,16 +30498,16 @@ class PedometerBindings { return __objc_msgSend_872(obj, sel); } - late final __objc_msgSend_872Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_872 = - __objc_msgSend_872Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_872Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_872 = __objc_msgSend_872Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_initWithUser_password_persistence_1 = _registerName1( "initWithUser:password:persistence:", @@ -30518,28 +30522,28 @@ class PedometerBindings { return __objc_msgSend_873(obj, sel, user, password, persistence); } - late final __objc_msgSend_873Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_873 = - __objc_msgSend_873Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_873Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_873 = __objc_msgSend_873Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_credentialWithUser_password_persistence_1 = _registerName1( "credentialWithUser:password:persistence:", @@ -30554,28 +30558,28 @@ class PedometerBindings { return __objc_msgSend_874(obj, sel, user, password, persistence); } - late final __objc_msgSend_874Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_874 = - __objc_msgSend_874Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_874Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_874 = __objc_msgSend_874Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_hasPassword1 = _registerName1("hasPassword"); late final _sel_initWithIdentity_certificates_persistence_1 = _registerName1( @@ -30591,28 +30595,28 @@ class PedometerBindings { return __objc_msgSend_875(obj, sel, identity, certArray, persistence); } - late final __objc_msgSend_875Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecIdentity>, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_875 = - __objc_msgSend_875Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecIdentity>, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_875Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecIdentity>, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_875 = __objc_msgSend_875Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecIdentity>, + ffi.Pointer, + int, + ) + >(); late final _sel_credentialWithIdentity_certificates_persistence_1 = _registerName1("credentialWithIdentity:certificates:persistence:"); @@ -30626,28 +30630,28 @@ class PedometerBindings { return __objc_msgSend_876(obj, sel, identity, certArray, persistence); } - late final __objc_msgSend_876Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecIdentity>, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_876 = - __objc_msgSend_876Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecIdentity>, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_876Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecIdentity>, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_876 = __objc_msgSend_876Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecIdentity>, + ffi.Pointer, + int, + ) + >(); late final _sel_identity1 = _registerName1("identity"); ffi.Pointer<__SecIdentity> _objc_msgSend_877( @@ -30657,22 +30661,22 @@ class PedometerBindings { return __objc_msgSend_877(obj, sel); } - late final __objc_msgSend_877Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<__SecIdentity> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_877 = - __objc_msgSend_877Ptr - .asFunction< - ffi.Pointer<__SecIdentity> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_877Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<__SecIdentity> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_877 = __objc_msgSend_877Ptr + .asFunction< + ffi.Pointer<__SecIdentity> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_certificates1 = _registerName1("certificates"); late final _sel_initWithTrust_1 = _registerName1("initWithTrust:"); @@ -30684,24 +30688,24 @@ class PedometerBindings { return __objc_msgSend_878(obj, sel, trust); } - late final __objc_msgSend_878Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecTrust>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_878 = - __objc_msgSend_878Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecTrust>, - ) - >(); + late final __objc_msgSend_878Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecTrust>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_878 = __objc_msgSend_878Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecTrust>, + ) + >(); late final _sel_credentialForTrust_1 = _registerName1("credentialForTrust:"); ffi.Pointer _objc_msgSend_879( @@ -30712,24 +30716,24 @@ class PedometerBindings { return __objc_msgSend_879(obj, sel, trust); } - late final __objc_msgSend_879Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecTrust>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_879 = - __objc_msgSend_879Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<__SecTrust>, - ) - >(); + late final __objc_msgSend_879Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecTrust>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_879 = __objc_msgSend_879Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<__SecTrust>, + ) + >(); late final _class_NSURLProtectionSpace1 = _getClass1("NSURLProtectionSpace"); late final _sel_initWithHost_port_protocol_realm_authenticationMethod_1 = @@ -30754,32 +30758,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_880Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_880 = - __objc_msgSend_880Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_880Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_880 = __objc_msgSend_880Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithProxyHost_port_type_realm_authenticationMethod_1 = _registerName1("initWithProxyHost:port:type:realm:authenticationMethod:"); @@ -30802,22 +30806,22 @@ class PedometerBindings { return __objc_msgSend_881(obj, sel); } - late final __objc_msgSend_881Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer<__SecTrust> Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_881 = - __objc_msgSend_881Ptr - .asFunction< - ffi.Pointer<__SecTrust> Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_881Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<__SecTrust> Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_881 = __objc_msgSend_881Ptr + .asFunction< + ffi.Pointer<__SecTrust> Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLCredentialStorage1 = _getClass1( "NSURLCredentialStorage", @@ -30832,22 +30836,22 @@ class PedometerBindings { return __objc_msgSend_882(obj, sel); } - late final __objc_msgSend_882Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_882 = - __objc_msgSend_882Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_882Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_882 = __objc_msgSend_882Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_credentialsForProtectionSpace_1 = _registerName1( "credentialsForProtectionSpace:", @@ -30860,24 +30864,24 @@ class PedometerBindings { return __objc_msgSend_883(obj, sel, space); } - late final __objc_msgSend_883Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_883 = - __objc_msgSend_883Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_883Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_883 = __objc_msgSend_883Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_allCredentials1 = _registerName1("allCredentials"); late final _sel_setCredential_forProtectionSpace_1 = _registerName1( @@ -30892,26 +30896,26 @@ class PedometerBindings { return __objc_msgSend_884(obj, sel, credential, space); } - late final __objc_msgSend_884Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_884 = - __objc_msgSend_884Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_884Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_884 = __objc_msgSend_884Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeCredential_forProtectionSpace_1 = _registerName1( "removeCredential:forProtectionSpace:", @@ -30928,28 +30932,28 @@ class PedometerBindings { return __objc_msgSend_885(obj, sel, credential, space, options); } - late final __objc_msgSend_885Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_885 = - __objc_msgSend_885Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_885Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_885 = __objc_msgSend_885Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_defaultCredentialForProtectionSpace_1 = _registerName1( "defaultCredentialForProtectionSpace:", @@ -30962,24 +30966,24 @@ class PedometerBindings { return __objc_msgSend_886(obj, sel, space); } - late final __objc_msgSend_886Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_886 = - __objc_msgSend_886Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_886Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_886 = __objc_msgSend_886Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setDefaultCredential_forProtectionSpace_1 = _registerName1( "setDefaultCredential:forProtectionSpace:", @@ -31004,28 +31008,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_887Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_887 = - __objc_msgSend_887Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_887Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_887 = __objc_msgSend_887Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_setCredential_forProtectionSpace_task_1 = _registerName1( "setCredential:forProtectionSpace:task:", @@ -31040,28 +31044,28 @@ class PedometerBindings { return __objc_msgSend_888(obj, sel, credential, protectionSpace, task); } - late final __objc_msgSend_888Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_888 = - __objc_msgSend_888Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_888Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_888 = __objc_msgSend_888Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeCredential_forProtectionSpace_options_task_1 = _registerName1("removeCredential:forProtectionSpace:options:task:"); @@ -31083,30 +31087,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_889Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_889 = - __objc_msgSend_889Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_889Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_889 = __objc_msgSend_889Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getDefaultCredentialForProtectionSpace_task_completionHandler_1 = _registerName1( @@ -31122,28 +31126,28 @@ class PedometerBindings { return __objc_msgSend_890(obj, sel, space, task, completionHandler); } - late final __objc_msgSend_890Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_890 = - __objc_msgSend_890Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_890Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_890 = __objc_msgSend_890Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_setDefaultCredential_forProtectionSpace_task_1 = _registerName1("setDefaultCredential:forProtectionSpace:task:"); @@ -31161,28 +31165,28 @@ class PedometerBindings { return __objc_msgSend_891(obj, sel, request, cachedResponse, client); } - late final __objc_msgSend_891Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_891 = - __objc_msgSend_891Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_891Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_891 = __objc_msgSend_891Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_client1 = _registerName1("client"); late final _sel_request1 = _registerName1("request"); @@ -31194,22 +31198,22 @@ class PedometerBindings { return __objc_msgSend_892(obj, sel); } - late final __objc_msgSend_892Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_892 = - __objc_msgSend_892Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_892Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_892 = __objc_msgSend_892Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_canInitWithRequest_1 = _registerName1("canInitWithRequest:"); late final _sel_canonicalRequestForRequest_1 = _registerName1( @@ -31223,24 +31227,24 @@ class PedometerBindings { return __objc_msgSend_893(obj, sel, request); } - late final __objc_msgSend_893Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_893 = - __objc_msgSend_893Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_893Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_893 = __objc_msgSend_893Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_requestIsCacheEquivalent_toRequest_1 = _registerName1( "requestIsCacheEquivalent:toRequest:", @@ -31254,26 +31258,26 @@ class PedometerBindings { return __objc_msgSend_894(obj, sel, a, b); } - late final __objc_msgSend_894Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_894 = - __objc_msgSend_894Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_894Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_894 = __objc_msgSend_894Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_startLoading1 = _registerName1("startLoading"); late final _sel_stopLoading1 = _registerName1("stopLoading"); @@ -31289,26 +31293,26 @@ class PedometerBindings { return __objc_msgSend_895(obj, sel, key, request); } - late final __objc_msgSend_895Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_895 = - __objc_msgSend_895Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_895Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_895 = __objc_msgSend_895Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSMutableURLRequest1 = _getClass1("NSMutableURLRequest"); late final _sel_setURL_1 = _registerName1("setURL:"); @@ -31321,20 +31325,20 @@ class PedometerBindings { return __objc_msgSend_896(obj, sel, value); } - late final __objc_msgSend_896Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_896 = - __objc_msgSend_896Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_896Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_896 = __objc_msgSend_896Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_setTimeoutInterval_1 = _registerName1("setTimeoutInterval:"); late final _sel_setMainDocumentURL_1 = _registerName1("setMainDocumentURL:"); @@ -31349,20 +31353,20 @@ class PedometerBindings { return __objc_msgSend_897(obj, sel, value); } - late final __objc_msgSend_897Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_897 = - __objc_msgSend_897Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_897Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_897 = __objc_msgSend_897Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_setAllowsCellularAccess_1 = _registerName1( "setAllowsCellularAccess:", @@ -31385,20 +31389,20 @@ class PedometerBindings { return __objc_msgSend_898(obj, sel, value); } - late final __objc_msgSend_898Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_898 = - __objc_msgSend_898Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_898Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_898 = __objc_msgSend_898Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_setRequiresDNSSECValidation_1 = _registerName1( "setRequiresDNSSECValidation:", @@ -31419,26 +31423,26 @@ class PedometerBindings { return __objc_msgSend_899(obj, sel, value, field); } - late final __objc_msgSend_899Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_899 = - __objc_msgSend_899Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_899Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_899 = __objc_msgSend_899Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addValue_forHTTPHeaderField_1 = _registerName1( "addValue:forHTTPHeaderField:", @@ -31452,24 +31456,24 @@ class PedometerBindings { return __objc_msgSend_900(obj, sel, value); } - late final __objc_msgSend_900Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_900 = - __objc_msgSend_900Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_900Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_900 = __objc_msgSend_900Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setHTTPBodyStream_1 = _registerName1("setHTTPBodyStream:"); void _objc_msgSend_901( @@ -31480,24 +31484,24 @@ class PedometerBindings { return __objc_msgSend_901(obj, sel, value); } - late final __objc_msgSend_901Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_901 = - __objc_msgSend_901Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_901Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_901 = __objc_msgSend_901Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setHTTPShouldHandleCookies_1 = _registerName1( "setHTTPShouldHandleCookies:", @@ -31518,28 +31522,28 @@ class PedometerBindings { return __objc_msgSend_902(obj, sel, value, key, request); } - late final __objc_msgSend_902Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_902 = - __objc_msgSend_902Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_902Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_902 = __objc_msgSend_902Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removePropertyForKey_inRequest_1 = _registerName1( "removePropertyForKey:inRequest:", @@ -31553,26 +31557,26 @@ class PedometerBindings { return __objc_msgSend_903(obj, sel, key, request); } - late final __objc_msgSend_903Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_903 = - __objc_msgSend_903Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_903Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_903 = __objc_msgSend_903Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_registerClass_1 = _registerName1("registerClass:"); late final _sel_unregisterClass_1 = _registerName1("unregisterClass:"); @@ -31585,24 +31589,24 @@ class PedometerBindings { return __objc_msgSend_904(obj, sel, task); } - late final __objc_msgSend_904Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_904 = - __objc_msgSend_904Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_904Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_904 = __objc_msgSend_904Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithTask_cachedResponse_client_1 = _registerName1( "initWithTask:cachedResponse:client:", @@ -31617,28 +31621,28 @@ class PedometerBindings { return __objc_msgSend_905(obj, sel, task, cachedResponse, client); } - late final __objc_msgSend_905Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_905 = - __objc_msgSend_905Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_905Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_905 = __objc_msgSend_905Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_task1 = _registerName1("task"); ffi.Pointer _objc_msgSend_906( @@ -31648,22 +31652,22 @@ class PedometerBindings { return __objc_msgSend_906(obj, sel); } - late final __objc_msgSend_906Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_906 = - __objc_msgSend_906Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_906Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_906 = __objc_msgSend_906Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSXMLParser1 = _getClass1("NSXMLParser"); late final _sel_initWithStream_1 = _registerName1("initWithStream:"); @@ -31675,24 +31679,24 @@ class PedometerBindings { return __objc_msgSend_907(obj, sel, stream); } - late final __objc_msgSend_907Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_907 = - __objc_msgSend_907Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_907Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_907 = __objc_msgSend_907Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_shouldProcessNamespaces1 = _registerName1( "shouldProcessNamespaces", @@ -31713,16 +31717,16 @@ class PedometerBindings { return __objc_msgSend_908(obj, sel); } - late final __objc_msgSend_908Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_908 = - __objc_msgSend_908Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_908Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_908 = __objc_msgSend_908Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setExternalEntityResolvingPolicy_1 = _registerName1( "setExternalEntityResolvingPolicy:", @@ -31735,20 +31739,20 @@ class PedometerBindings { return __objc_msgSend_909(obj, sel, value); } - late final __objc_msgSend_909Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_909 = - __objc_msgSend_909Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_909Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_909 = __objc_msgSend_909Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_allowedExternalEntityURLs1 = _registerName1( "allowedExternalEntityURLs", @@ -31764,24 +31768,24 @@ class PedometerBindings { return __objc_msgSend_910(obj, sel, value); } - late final __objc_msgSend_910Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_910 = - __objc_msgSend_910Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_910Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_910 = __objc_msgSend_910Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_parse1 = _registerName1("parse"); late final _sel_abortParsing1 = _registerName1("abortParsing"); @@ -31810,28 +31814,28 @@ class PedometerBindings { return __objc_msgSend_911(obj, sel, url, options, outError); } - late final __objc_msgSend_911Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_911 = - __objc_msgSend_911Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_911Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_911 = __objc_msgSend_911Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_initDirectoryWithFileWrappers_1 = _registerName1( "initDirectoryWithFileWrappers:", @@ -31872,28 +31876,28 @@ class PedometerBindings { return __objc_msgSend_912(obj, sel, url, options, outError); } - late final __objc_msgSend_912Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_912 = - __objc_msgSend_912Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_912Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_912 = __objc_msgSend_912Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer>, + ) + >(); late final _sel_writeToURL_options_originalContentsURL_error_1 = _registerName1("writeToURL:options:originalContentsURL:error:"); @@ -31915,30 +31919,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_913Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_913 = - __objc_msgSend_913Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_913Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_913 = __objc_msgSend_913Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ffi.Pointer>, + ) + >(); late final _sel_serializedRepresentation1 = _registerName1( "serializedRepresentation", @@ -31952,56 +31956,56 @@ class PedometerBindings { return __objc_msgSend_914(obj, sel, child); } - late final __objc_msgSend_914Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_914 = - __objc_msgSend_914Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_914Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_914 = __objc_msgSend_914Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addRegularFileWithContents_preferredFilename_1 = _registerName1("addRegularFileWithContents:preferredFilename:"); ffi.Pointer _objc_msgSend_915( - ffi.Pointer obj, - ffi.Pointer sel, - ffi.Pointer data, - ffi.Pointer fileName, - ) { - return __objc_msgSend_915(obj, sel, data, fileName); - } - - late final __objc_msgSend_915Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_915 = - __objc_msgSend_915Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + ffi.Pointer obj, + ffi.Pointer sel, + ffi.Pointer data, + ffi.Pointer fileName, + ) { + return __objc_msgSend_915(obj, sel, data, fileName); + } + + late final __objc_msgSend_915Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_915 = __objc_msgSend_915Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_removeFileWrapper_1 = _registerName1("removeFileWrapper:"); void _objc_msgSend_916( @@ -32012,24 +32016,24 @@ class PedometerBindings { return __objc_msgSend_916(obj, sel, child); } - late final __objc_msgSend_916Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_916 = - __objc_msgSend_916Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_916Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_916 = __objc_msgSend_916Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_fileWrappers1 = _registerName1("fileWrappers"); late final _sel_keyForFileWrapper_1 = _registerName1("keyForFileWrapper:"); @@ -32041,24 +32045,24 @@ class PedometerBindings { return __objc_msgSend_917(obj, sel, child); } - late final __objc_msgSend_917Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_917 = - __objc_msgSend_917Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_917Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_917 = __objc_msgSend_917Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_regularFileContents1 = _registerName1("regularFileContents"); late final _sel_symbolicLinkDestinationURL1 = _registerName1( @@ -32084,28 +32088,28 @@ class PedometerBindings { return __objc_msgSend_918(obj, sel, path, atomicFlag, updateFilenamesFlag); } - late final __objc_msgSend_918Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_918 = - __objc_msgSend_918Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - bool, - bool, - ) - >(); + late final __objc_msgSend_918Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_918 = __objc_msgSend_918Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + bool, + bool, + ) + >(); late final _sel_addFileWithPath_1 = _registerName1("addFileWithPath:"); late final _sel_addSymbolicLinkWithDestination_preferredFilename_1 = @@ -32122,22 +32126,22 @@ class PedometerBindings { return __objc_msgSend_919(obj, sel); } - late final __objc_msgSend_919Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_919 = - __objc_msgSend_919Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_919Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_919 = __objc_msgSend_919Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLSessionConfiguration1 = _getClass1( "NSURLSessionConfiguration", @@ -32152,22 +32156,22 @@ class PedometerBindings { return __objc_msgSend_920(obj, sel); } - late final __objc_msgSend_920Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_920 = - __objc_msgSend_920Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_920Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_920 = __objc_msgSend_920Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_ephemeralSessionConfiguration1 = _registerName1( "ephemeralSessionConfiguration", @@ -32182,24 +32186,24 @@ class PedometerBindings { return __objc_msgSend_921(obj, sel, identifier); } - late final __objc_msgSend_921Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_921 = - __objc_msgSend_921Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_921Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_921 = __objc_msgSend_921Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_identifier1 = _registerName1("identifier"); late final _sel_requestCachePolicy1 = _registerName1("requestCachePolicy"); @@ -32251,16 +32255,16 @@ class PedometerBindings { return __objc_msgSend_922(obj, sel); } - late final __objc_msgSend_922Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_922 = - __objc_msgSend_922Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_922Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_922 = __objc_msgSend_922Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setTLSMinimumSupportedProtocol_1 = _registerName1( "setTLSMinimumSupportedProtocol:", @@ -32273,20 +32277,20 @@ class PedometerBindings { return __objc_msgSend_923(obj, sel, value); } - late final __objc_msgSend_923Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_923 = - __objc_msgSend_923Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_923Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_923 = __objc_msgSend_923Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_TLSMaximumSupportedProtocol1 = _registerName1( "TLSMaximumSupportedProtocol", @@ -32301,16 +32305,16 @@ class PedometerBindings { return __objc_msgSend_924(obj, sel); } - late final __objc_msgSend_924Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_924 = - __objc_msgSend_924Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_924Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_924 = __objc_msgSend_924Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setTLSMinimumSupportedProtocolVersion_1 = _registerName1( "setTLSMinimumSupportedProtocolVersion:", @@ -32323,20 +32327,20 @@ class PedometerBindings { return __objc_msgSend_925(obj, sel, value); } - late final __objc_msgSend_925Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_925 = - __objc_msgSend_925Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_925Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_925 = __objc_msgSend_925Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_TLSMaximumSupportedProtocolVersion1 = _registerName1( "TLSMaximumSupportedProtocolVersion", @@ -32376,22 +32380,22 @@ class PedometerBindings { return __objc_msgSend_926(obj, sel); } - late final __objc_msgSend_926Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_926 = - __objc_msgSend_926Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_926Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_926 = __objc_msgSend_926Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setHTTPCookieStorage_1 = _registerName1( "setHTTPCookieStorage:", @@ -32404,24 +32408,24 @@ class PedometerBindings { return __objc_msgSend_927(obj, sel, value); } - late final __objc_msgSend_927Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_927 = - __objc_msgSend_927Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_927Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_927 = __objc_msgSend_927Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLCredentialStorage1 = _registerName1( "URLCredentialStorage", @@ -32433,22 +32437,22 @@ class PedometerBindings { return __objc_msgSend_928(obj, sel); } - late final __objc_msgSend_928Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_928 = - __objc_msgSend_928Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_928Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_928 = __objc_msgSend_928Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setURLCredentialStorage_1 = _registerName1( "setURLCredentialStorage:", @@ -32461,24 +32465,24 @@ class PedometerBindings { return __objc_msgSend_929(obj, sel, value); } - late final __objc_msgSend_929Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_929 = - __objc_msgSend_929Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_929Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_929 = __objc_msgSend_929Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_URLCache1 = _registerName1("URLCache"); ffi.Pointer _objc_msgSend_930( @@ -32488,22 +32492,22 @@ class PedometerBindings { return __objc_msgSend_930(obj, sel); } - late final __objc_msgSend_930Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_930 = - __objc_msgSend_930Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_930Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_930 = __objc_msgSend_930Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_setURLCache_1 = _registerName1("setURLCache:"); void _objc_msgSend_931( @@ -32514,24 +32518,24 @@ class PedometerBindings { return __objc_msgSend_931(obj, sel, value); } - late final __objc_msgSend_931Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_931 = - __objc_msgSend_931Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_931Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_931 = __objc_msgSend_931Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_shouldUseExtendedBackgroundIdleMode1 = _registerName1( "shouldUseExtendedBackgroundIdleMode", @@ -32549,24 +32553,24 @@ class PedometerBindings { return __objc_msgSend_932(obj, sel, value); } - late final __objc_msgSend_932Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_932 = - __objc_msgSend_932Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_932Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_932 = __objc_msgSend_932Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_multipathServiceType1 = _registerName1( "multipathServiceType", @@ -32575,16 +32579,16 @@ class PedometerBindings { return __objc_msgSend_933(obj, sel); } - late final __objc_msgSend_933Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_933 = - __objc_msgSend_933Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_933Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_933 = __objc_msgSend_933Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setMultipathServiceType_1 = _registerName1( "setMultipathServiceType:", @@ -32597,20 +32601,20 @@ class PedometerBindings { return __objc_msgSend_934(obj, sel, value); } - late final __objc_msgSend_934Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_934 = - __objc_msgSend_934Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_934Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_934 = __objc_msgSend_934Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_backgroundSessionConfiguration_1 = _registerName1( "backgroundSessionConfiguration:", @@ -32626,24 +32630,24 @@ class PedometerBindings { return __objc_msgSend_935(obj, sel, configuration); } - late final __objc_msgSend_935Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_935 = - __objc_msgSend_935Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_935Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_935 = __objc_msgSend_935Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sessionWithConfiguration_delegate_delegateQueue_1 = _registerName1("sessionWithConfiguration:delegate:delegateQueue:"); @@ -32657,28 +32661,28 @@ class PedometerBindings { return __objc_msgSend_936(obj, sel, configuration, delegate, queue); } - late final __objc_msgSend_936Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_936 = - __objc_msgSend_936Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_936Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_936 = __objc_msgSend_936Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_delegateQueue1 = _registerName1("delegateQueue"); late final _sel_configuration1 = _registerName1("configuration"); @@ -32707,24 +32711,24 @@ class PedometerBindings { return __objc_msgSend_937(obj, sel, completionHandler); } - late final __objc_msgSend_937Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_937 = - __objc_msgSend_937Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_937Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_937 = __objc_msgSend_937Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_getAllTasksWithCompletionHandler_1 = _registerName1( "getAllTasksWithCompletionHandler:", @@ -32737,24 +32741,24 @@ class PedometerBindings { return __objc_msgSend_938(obj, sel, completionHandler); } - late final __objc_msgSend_938Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_938 = - __objc_msgSend_938Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_938Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_938 = __objc_msgSend_938Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_dataTaskWithRequest_1 = _registerName1( "dataTaskWithRequest:", @@ -32767,24 +32771,24 @@ class PedometerBindings { return __objc_msgSend_939(obj, sel, request); } - late final __objc_msgSend_939Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_939 = - __objc_msgSend_939Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_939Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_939 = __objc_msgSend_939Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dataTaskWithURL_1 = _registerName1("dataTaskWithURL:"); ffi.Pointer _objc_msgSend_940( @@ -32795,24 +32799,24 @@ class PedometerBindings { return __objc_msgSend_940(obj, sel, url); } - late final __objc_msgSend_940Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_940 = - __objc_msgSend_940Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_940Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_940 = __objc_msgSend_940Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLSessionUploadTask1 = _getClass1( "NSURLSessionUploadTask", @@ -32828,24 +32832,24 @@ class PedometerBindings { return __objc_msgSend_941(obj, sel, completionHandler); } - late final __objc_msgSend_941Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_941 = - __objc_msgSend_941Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_941Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_941 = __objc_msgSend_941Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_uploadTaskWithRequest_fromFile_1 = _registerName1( "uploadTaskWithRequest:fromFile:", @@ -32859,26 +32863,26 @@ class PedometerBindings { return __objc_msgSend_942(obj, sel, request, fileURL); } - late final __objc_msgSend_942Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_942 = - __objc_msgSend_942Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_942Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_942 = __objc_msgSend_942Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_uploadTaskWithRequest_fromData_1 = _registerName1( "uploadTaskWithRequest:fromData:", @@ -32892,26 +32896,26 @@ class PedometerBindings { return __objc_msgSend_943(obj, sel, request, bodyData); } - late final __objc_msgSend_943Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_943 = - __objc_msgSend_943Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_943Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_943 = __objc_msgSend_943Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_uploadTaskWithResumeData_1 = _registerName1( "uploadTaskWithResumeData:", @@ -32924,24 +32928,24 @@ class PedometerBindings { return __objc_msgSend_944(obj, sel, resumeData); } - late final __objc_msgSend_944Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_944 = - __objc_msgSend_944Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_944Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_944 = __objc_msgSend_944Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_uploadTaskWithStreamedRequest_1 = _registerName1( "uploadTaskWithStreamedRequest:", @@ -32954,24 +32958,24 @@ class PedometerBindings { return __objc_msgSend_945(obj, sel, request); } - late final __objc_msgSend_945Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_945 = - __objc_msgSend_945Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_945Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_945 = __objc_msgSend_945Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLSessionDownloadTask1 = _getClass1( "NSURLSessionDownloadTask", @@ -32987,24 +32991,24 @@ class PedometerBindings { return __objc_msgSend_946(obj, sel, request); } - late final __objc_msgSend_946Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_946 = - __objc_msgSend_946Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_946Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_946 = __objc_msgSend_946Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_downloadTaskWithURL_1 = _registerName1( "downloadTaskWithURL:", @@ -33017,24 +33021,24 @@ class PedometerBindings { return __objc_msgSend_947(obj, sel, url); } - late final __objc_msgSend_947Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_947 = - __objc_msgSend_947Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_947Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_947 = __objc_msgSend_947Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_downloadTaskWithResumeData_1 = _registerName1( "downloadTaskWithResumeData:", @@ -33047,24 +33051,24 @@ class PedometerBindings { return __objc_msgSend_948(obj, sel, resumeData); } - late final __objc_msgSend_948Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_948 = - __objc_msgSend_948Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_948Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_948 = __objc_msgSend_948Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLSessionStreamTask1 = _getClass1( "NSURLSessionStreamTask", @@ -33091,30 +33095,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_949Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.UnsignedLong, - ffi.UnsignedLong, - ffi.Double, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_949 = - __objc_msgSend_949Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - int, - double, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_949Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.UnsignedLong, + ffi.UnsignedLong, + ffi.Double, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_949 = __objc_msgSend_949Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + int, + double, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_writeData_timeout_completionHandler_1 = _registerName1( "writeData:timeout:completionHandler:", @@ -33129,28 +33133,28 @@ class PedometerBindings { return __objc_msgSend_950(obj, sel, data, timeout, completionHandler); } - late final __objc_msgSend_950Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_950 = - __objc_msgSend_950Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - double, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_950Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_950 = __objc_msgSend_950Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + double, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_captureStreams1 = _registerName1("captureStreams"); late final _sel_closeWrite1 = _registerName1("closeWrite"); @@ -33173,26 +33177,26 @@ class PedometerBindings { return __objc_msgSend_951(obj, sel, hostname, port); } - late final __objc_msgSend_951Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_951 = - __objc_msgSend_951Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_951Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_951 = __objc_msgSend_951Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _class_NSNetService1 = _getClass1("NSNetService"); late final _sel_initWithDomain_type_name_port_1 = _registerName1( @@ -33209,30 +33213,30 @@ class PedometerBindings { return __objc_msgSend_952(obj, sel, domain, type, name, port); } - late final __objc_msgSend_952Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Int, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_952 = - __objc_msgSend_952Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_952Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Int, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_952 = __objc_msgSend_952Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithDomain_type_name_1 = _registerName1( "initWithDomain:type:name:", @@ -33247,28 +33251,28 @@ class PedometerBindings { return __objc_msgSend_953(obj, sel, domain, type, name); } - late final __objc_msgSend_953Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_953 = - __objc_msgSend_953Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_953Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_953 = __objc_msgSend_953Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_includesPeerToPeer1 = _registerName1("includesPeerToPeer"); late final _sel_setIncludesPeerToPeer_1 = _registerName1( @@ -33285,20 +33289,20 @@ class PedometerBindings { return __objc_msgSend_954(obj, sel, options); } - late final __objc_msgSend_954Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_954 = - __objc_msgSend_954Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_954Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_954 = __objc_msgSend_954Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_resolve1 = _registerName1("resolve"); late final _sel_stop1 = _registerName1("stop"); @@ -33313,24 +33317,24 @@ class PedometerBindings { return __objc_msgSend_955(obj, sel, txtData); } - late final __objc_msgSend_955Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_955 = - __objc_msgSend_955Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_955Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_955 = __objc_msgSend_955Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dataFromTXTRecordDictionary_1 = _registerName1( "dataFromTXTRecordDictionary:", @@ -33343,24 +33347,24 @@ class PedometerBindings { return __objc_msgSend_956(obj, sel, txtDictionary); } - late final __objc_msgSend_956Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_956 = - __objc_msgSend_956Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_956Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_956 = __objc_msgSend_956Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_resolveWithTimeout_1 = _registerName1("resolveWithTimeout:"); late final _sel_getInputStream_outputStream_1 = _registerName1( @@ -33375,26 +33379,26 @@ class PedometerBindings { return __objc_msgSend_957(obj, sel, inputStream, outputStream); } - late final __objc_msgSend_957Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_957 = - __objc_msgSend_957Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer>, - ffi.Pointer>, - ) - >(); + late final __objc_msgSend_957Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_957 = __objc_msgSend_957Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer>, + ffi.Pointer>, + ) + >(); late final _sel_setTXTRecordData_1 = _registerName1("setTXTRecordData:"); bool _objc_msgSend_958( @@ -33405,24 +33409,24 @@ class PedometerBindings { return __objc_msgSend_958(obj, sel, recordData); } - late final __objc_msgSend_958Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_958 = - __objc_msgSend_958Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_958Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_958 = __objc_msgSend_958Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_TXTRecordData1 = _registerName1("TXTRecordData"); late final _sel_startMonitoring1 = _registerName1("startMonitoring"); @@ -33438,24 +33442,24 @@ class PedometerBindings { return __objc_msgSend_959(obj, sel, service); } - late final __objc_msgSend_959Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_959 = - __objc_msgSend_959Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_959Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_959 = __objc_msgSend_959Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_NSURLSessionWebSocketTask1 = _getClass1( "NSURLSessionWebSocketTask", @@ -33467,16 +33471,16 @@ class PedometerBindings { return __objc_msgSend_960(obj, sel); } - late final __objc_msgSend_960Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_960 = - __objc_msgSend_960Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_960Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_960 = __objc_msgSend_960Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_sendMessage_completionHandler_1 = _registerName1( "sendMessage:completionHandler:", @@ -33490,26 +33494,26 @@ class PedometerBindings { return __objc_msgSend_961(obj, sel, message, completionHandler); } - late final __objc_msgSend_961Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_961 = - __objc_msgSend_961Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_961Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_961 = __objc_msgSend_961Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_receiveMessageWithCompletionHandler_1 = _registerName1( "receiveMessageWithCompletionHandler:", @@ -33522,24 +33526,24 @@ class PedometerBindings { return __objc_msgSend_962(obj, sel, completionHandler); } - late final __objc_msgSend_962Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_962 = - __objc_msgSend_962Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_962Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_962 = __objc_msgSend_962Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_sendPingWithPongReceiveHandler_1 = _registerName1( "sendPingWithPongReceiveHandler:", @@ -33552,24 +33556,24 @@ class PedometerBindings { return __objc_msgSend_963(obj, sel, pongReceiveHandler); } - late final __objc_msgSend_963Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_963 = - __objc_msgSend_963Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_963Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_963 = __objc_msgSend_963Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_cancelWithCloseCode_reason_1 = _registerName1( "cancelWithCloseCode:reason:", @@ -33583,26 +33587,26 @@ class PedometerBindings { return __objc_msgSend_964(obj, sel, closeCode, reason); } - late final __objc_msgSend_964Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_964 = - __objc_msgSend_964Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_964Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_964 = __objc_msgSend_964Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_maximumMessageSize1 = _registerName1("maximumMessageSize"); late final _sel_setMaximumMessageSize_1 = _registerName1( @@ -33613,16 +33617,16 @@ class PedometerBindings { return __objc_msgSend_965(obj, sel); } - late final __objc_msgSend_965Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_965 = - __objc_msgSend_965Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_965Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_965 = __objc_msgSend_965Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_closeReason1 = _registerName1("closeReason"); late final _sel_webSocketTaskWithURL_1 = _registerName1( @@ -33636,24 +33640,24 @@ class PedometerBindings { return __objc_msgSend_966(obj, sel, url); } - late final __objc_msgSend_966Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_966 = - __objc_msgSend_966Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_966Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_966 = __objc_msgSend_966Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_webSocketTaskWithURL_protocols_1 = _registerName1( "webSocketTaskWithURL:protocols:", @@ -33667,26 +33671,26 @@ class PedometerBindings { return __objc_msgSend_967(obj, sel, url, protocols); } - late final __objc_msgSend_967Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_967 = - __objc_msgSend_967Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_967Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_967 = __objc_msgSend_967Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_webSocketTaskWithRequest_1 = _registerName1( "webSocketTaskWithRequest:", @@ -33699,24 +33703,24 @@ class PedometerBindings { return __objc_msgSend_968(obj, sel, request); } - late final __objc_msgSend_968Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_968 = - __objc_msgSend_968Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_968Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_968 = __objc_msgSend_968Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_dataTaskWithRequest_completionHandler_1 = _registerName1( "dataTaskWithRequest:completionHandler:", @@ -33730,26 +33734,26 @@ class PedometerBindings { return __objc_msgSend_969(obj, sel, request, completionHandler); } - late final __objc_msgSend_969Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_969 = - __objc_msgSend_969Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_969Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_969 = __objc_msgSend_969Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_dataTaskWithURL_completionHandler_1 = _registerName1( "dataTaskWithURL:completionHandler:", @@ -33763,26 +33767,26 @@ class PedometerBindings { return __objc_msgSend_970(obj, sel, url, completionHandler); } - late final __objc_msgSend_970Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_970 = - __objc_msgSend_970Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_970Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_970 = __objc_msgSend_970Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_uploadTaskWithRequest_fromFile_completionHandler_1 = _registerName1("uploadTaskWithRequest:fromFile:completionHandler:"); @@ -33796,28 +33800,28 @@ class PedometerBindings { return __objc_msgSend_971(obj, sel, request, fileURL, completionHandler); } - late final __objc_msgSend_971Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_971 = - __objc_msgSend_971Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_971Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_971 = __objc_msgSend_971Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_uploadTaskWithRequest_fromData_completionHandler_1 = _registerName1("uploadTaskWithRequest:fromData:completionHandler:"); @@ -33831,28 +33835,28 @@ class PedometerBindings { return __objc_msgSend_972(obj, sel, request, bodyData, completionHandler); } - late final __objc_msgSend_972Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_972 = - __objc_msgSend_972Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_972Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_972 = __objc_msgSend_972Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_uploadTaskWithResumeData_completionHandler_1 = _registerName1( "uploadTaskWithResumeData:completionHandler:", @@ -33866,26 +33870,26 @@ class PedometerBindings { return __objc_msgSend_973(obj, sel, resumeData, completionHandler); } - late final __objc_msgSend_973Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_973 = - __objc_msgSend_973Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_973Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_973 = __objc_msgSend_973Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_downloadTaskWithRequest_completionHandler_1 = _registerName1( "downloadTaskWithRequest:completionHandler:", @@ -33899,26 +33903,26 @@ class PedometerBindings { return __objc_msgSend_974(obj, sel, request, completionHandler); } - late final __objc_msgSend_974Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_974 = - __objc_msgSend_974Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_974Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_974 = __objc_msgSend_974Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_downloadTaskWithURL_completionHandler_1 = _registerName1( "downloadTaskWithURL:completionHandler:", @@ -33932,26 +33936,26 @@ class PedometerBindings { return __objc_msgSend_975(obj, sel, url, completionHandler); } - late final __objc_msgSend_975Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_975 = - __objc_msgSend_975Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_975Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_975 = __objc_msgSend_975Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_downloadTaskWithResumeData_completionHandler_1 = _registerName1("downloadTaskWithResumeData:completionHandler:"); @@ -33964,26 +33968,26 @@ class PedometerBindings { return __objc_msgSend_976(obj, sel, resumeData, completionHandler); } - late final __objc_msgSend_976Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_976 = - __objc_msgSend_976Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_976Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_976 = __objc_msgSend_976Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _class_CMPedometer1 = _getClass1("CMPedometer"); late final _sel_isStepCountingAvailable1 = _registerName1( @@ -34003,16 +34007,16 @@ class PedometerBindings { return __objc_msgSend_977(obj, sel); } - late final __objc_msgSend_977Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_977 = - __objc_msgSend_977Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_977Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_977 = __objc_msgSend_977Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _class_CMPedometerData1 = _getClass1("CMPedometerData"); late final _sel_startDate1 = _registerName1("startDate"); @@ -34036,28 +34040,28 @@ class PedometerBindings { return __objc_msgSend_978(obj, sel, start, end, handler); } - late final __objc_msgSend_978Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_978 = - __objc_msgSend_978Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_978Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_978 = __objc_msgSend_978Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_startPedometerUpdatesFromDate_withHandler_1 = _registerName1( "startPedometerUpdatesFromDate:withHandler:", @@ -34071,26 +34075,26 @@ class PedometerBindings { return __objc_msgSend_979(obj, sel, start, handler); } - late final __objc_msgSend_979Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_979 = - __objc_msgSend_979Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_979Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_979 = __objc_msgSend_979Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_stopPedometerUpdates1 = _registerName1( "stopPedometerUpdates", @@ -34100,16 +34104,16 @@ class PedometerBindings { return __objc_msgSend_980(obj, sel); } - late final __objc_msgSend_980Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_980 = - __objc_msgSend_980Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_980Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_980 = __objc_msgSend_980Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_startPedometerEventUpdatesWithHandler_1 = _registerName1( "startPedometerEventUpdatesWithHandler:", @@ -34122,24 +34126,24 @@ class PedometerBindings { return __objc_msgSend_981(obj, sel, handler); } - late final __objc_msgSend_981Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_981 = - __objc_msgSend_981Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_981Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_981 = __objc_msgSend_981Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_stopPedometerEventUpdates1 = _registerName1( "stopPedometerEventUpdates", @@ -34165,16 +34169,16 @@ class PedometerBindings { return __objc_msgSend_982(obj, sel); } - late final __objc_msgSend_982Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_982 = - __objc_msgSend_982Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_982Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_982 = __objc_msgSend_982Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_accuracyAuthorization1 = _registerName1( "accuracyAuthorization", @@ -34183,16 +34187,16 @@ class PedometerBindings { return __objc_msgSend_983(obj, sel); } - late final __objc_msgSend_983Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_983 = - __objc_msgSend_983Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_983Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_983 = __objc_msgSend_983Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_isAuthorizedForWidgetUpdates1 = _registerName1( "isAuthorizedForWidgetUpdates", @@ -34204,16 +34208,16 @@ class PedometerBindings { return __objc_msgSend_984(obj, sel); } - late final __objc_msgSend_984Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_984 = - __objc_msgSend_984Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_984Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_984 = __objc_msgSend_984Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setActivityType_1 = _registerName1("setActivityType:"); void _objc_msgSend_985( @@ -34224,20 +34228,20 @@ class PedometerBindings { return __objc_msgSend_985(obj, sel, value); } - late final __objc_msgSend_985Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_985 = - __objc_msgSend_985Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_985Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_985 = __objc_msgSend_985Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _sel_distanceFilter1 = _registerName1("distanceFilter"); late final _sel_setDistanceFilter_1 = _registerName1("setDistanceFilter:"); @@ -34274,26 +34278,26 @@ class PedometerBindings { return __objc_msgSend_986(obj, sel, latitude, longitude); } - late final __objc_msgSend_986Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_986 = - __objc_msgSend_986Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - double, - double, - ) - >(); + late final __objc_msgSend_986Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_986 = __objc_msgSend_986Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + double, + double, + ) + >(); late final _sel_initWithCoordinate_altitude_horizontalAccuracy_verticalAccuracy_timestamp_1 = _registerName1( @@ -34319,32 +34323,32 @@ class PedometerBindings { ); } - late final __objc_msgSend_987Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_987 = - __objc_msgSend_987Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - double, - double, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_987Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_987 = __objc_msgSend_987Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + double, + double, + double, + ffi.Pointer, + ) + >(); late final _sel_initWithCoordinate_altitude_horizontalAccuracy_verticalAccuracy_course_speed_timestamp_1 = _registerName1( @@ -34374,36 +34378,36 @@ class PedometerBindings { ); } - late final __objc_msgSend_988Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_988 = - __objc_msgSend_988Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - double, - double, - double, - double, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_988Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_988 = __objc_msgSend_988Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + double, + double, + double, + double, + double, + ffi.Pointer, + ) + >(); late final _sel_initWithCoordinate_altitude_horizontalAccuracy_verticalAccuracy_course_courseAccuracy_speed_speedAccuracy_timestamp_1 = _registerName1( @@ -34437,40 +34441,40 @@ class PedometerBindings { ); } - late final __objc_msgSend_989Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_989 = - __objc_msgSend_989Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - double, - double, - double, - double, - double, - double, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_989Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_989 = __objc_msgSend_989Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + double, + double, + double, + double, + double, + double, + double, + ffi.Pointer, + ) + >(); late final _class_CLLocationSourceInformation1 = _getClass1( "CLLocationSourceInformation", @@ -34488,26 +34492,26 @@ class PedometerBindings { return __objc_msgSend_990(obj, sel, isSoftware, isAccessory); } - late final __objc_msgSend_990Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Bool, - ffi.Bool, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_990 = - __objc_msgSend_990Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - bool, - bool, - ) - >(); + late final __objc_msgSend_990Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Bool, + ffi.Bool, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_990 = __objc_msgSend_990Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + bool, + bool, + ) + >(); late final _sel_isSimulatedBySoftware1 = _registerName1( "isSimulatedBySoftware", @@ -34549,42 +34553,42 @@ class PedometerBindings { ); } - late final __objc_msgSend_991Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Double, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_991 = - __objc_msgSend_991Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - double, - double, - double, - double, - double, - double, - double, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_991Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Double, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_991 = __objc_msgSend_991Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + double, + double, + double, + double, + double, + double, + double, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_coordinate1 = _registerName1("coordinate"); CLLocationCoordinate2D _objc_msgSend_992( @@ -34594,22 +34598,22 @@ class PedometerBindings { return __objc_msgSend_992(obj, sel); } - late final __objc_msgSend_992Ptr = _lookup< - ffi.NativeFunction< - CLLocationCoordinate2D Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_992 = - __objc_msgSend_992Ptr - .asFunction< - CLLocationCoordinate2D Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_992Ptr = + _lookup< + ffi.NativeFunction< + CLLocationCoordinate2D Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_992 = __objc_msgSend_992Ptr + .asFunction< + CLLocationCoordinate2D Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); void _objc_msgSend_992_stret( ffi.Pointer stret, @@ -34619,24 +34623,24 @@ class PedometerBindings { return __objc_msgSend_992_stret(stret, obj, sel); } - late final __objc_msgSend_992_stretPtr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_stret'); - late final __objc_msgSend_992_stret = - __objc_msgSend_992_stretPtr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_992_stretPtr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_stret'); + late final __objc_msgSend_992_stret = __objc_msgSend_992_stretPtr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_altitude1 = _registerName1("altitude"); late final _sel_ellipsoidalAltitude1 = _registerName1("ellipsoidalAltitude"); @@ -34657,22 +34661,22 @@ class PedometerBindings { return __objc_msgSend_993(obj, sel); } - late final __objc_msgSend_993Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_993 = - __objc_msgSend_993Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_993Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_993 = __objc_msgSend_993Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_sourceInformation1 = _registerName1("sourceInformation"); ffi.Pointer _objc_msgSend_994( @@ -34682,22 +34686,22 @@ class PedometerBindings { return __objc_msgSend_994(obj, sel); } - late final __objc_msgSend_994Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_994 = - __objc_msgSend_994Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_994Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_994 = __objc_msgSend_994Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getDistanceFrom_1 = _registerName1("getDistanceFrom:"); double _objc_msgSend_995( @@ -34708,24 +34712,24 @@ class PedometerBindings { return __objc_msgSend_995(obj, sel, location); } - late final __objc_msgSend_995Ptr = _lookup< - ffi.NativeFunction< - ffi.Double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_995 = - __objc_msgSend_995Ptr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_995Ptr = + _lookup< + ffi.NativeFunction< + ffi.Double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_995 = __objc_msgSend_995Ptr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); double _objc_msgSend_995_fpret( ffi.Pointer obj, @@ -34735,24 +34739,24 @@ class PedometerBindings { return __objc_msgSend_995_fpret(obj, sel, location); } - late final __objc_msgSend_995_fpretPtr = _lookup< - ffi.NativeFunction< - ffi.Double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend_fpret'); - late final __objc_msgSend_995_fpret = - __objc_msgSend_995_fpretPtr - .asFunction< - double Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_995_fpretPtr = + _lookup< + ffi.NativeFunction< + ffi.Double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend_fpret'); + late final __objc_msgSend_995_fpret = __objc_msgSend_995_fpretPtr + .asFunction< + double Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_distanceFromLocation_1 = _registerName1( "distanceFromLocation:", @@ -34765,22 +34769,22 @@ class PedometerBindings { return __objc_msgSend_996(obj, sel); } - late final __objc_msgSend_996Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_996 = - __objc_msgSend_996Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_996Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_996 = __objc_msgSend_996Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_headingFilter1 = _registerName1("headingFilter"); late final _sel_setHeadingFilter_1 = _registerName1("setHeadingFilter:"); @@ -34789,16 +34793,16 @@ class PedometerBindings { return __objc_msgSend_997(obj, sel); } - late final __objc_msgSend_997Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function(ffi.Pointer, ffi.Pointer) - > - >('objc_msgSend'); - late final __objc_msgSend_997 = - __objc_msgSend_997Ptr - .asFunction< - int Function(ffi.Pointer, ffi.Pointer) - >(); + late final __objc_msgSend_997Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function(ffi.Pointer, ffi.Pointer) + > + >('objc_msgSend'); + late final __objc_msgSend_997 = __objc_msgSend_997Ptr + .asFunction< + int Function(ffi.Pointer, ffi.Pointer) + >(); late final _sel_setHeadingOrientation_1 = _registerName1( "setHeadingOrientation:", @@ -34811,20 +34815,20 @@ class PedometerBindings { return __objc_msgSend_998(obj, sel, value); } - late final __objc_msgSend_998Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Int32, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_998 = - __objc_msgSend_998Ptr - .asFunction< - void Function(ffi.Pointer, ffi.Pointer, int) - >(); + late final __objc_msgSend_998Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Int32, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_998 = __objc_msgSend_998Ptr + .asFunction< + void Function(ffi.Pointer, ffi.Pointer, int) + >(); late final _class_CLHeading1 = _getClass1("CLHeading"); late final _sel_magneticHeading1 = _registerName1("magneticHeading"); @@ -34841,22 +34845,22 @@ class PedometerBindings { return __objc_msgSend_999(obj, sel); } - late final __objc_msgSend_999Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_999 = - __objc_msgSend_999Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_999Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_999 = __objc_msgSend_999Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_maximumRegionMonitoringDistance1 = _registerName1( "maximumRegionMonitoringDistance", @@ -34885,26 +34889,26 @@ class PedometerBindings { return __objc_msgSend_1000(obj, sel, purposeKey, completion); } - late final __objc_msgSend_1000Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1000 = - __objc_msgSend_1000Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1000Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1000 = __objc_msgSend_1000Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_requestTemporaryFullAccuracyAuthorizationWithPurposeKey_1 = _registerName1( @@ -34940,24 +34944,24 @@ class PedometerBindings { return __objc_msgSend_1001(obj, sel, completion); } - late final __objc_msgSend_1001Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1001 = - __objc_msgSend_1001Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1001Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1001 = __objc_msgSend_1001Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_stopMonitoringLocationPushes1 = _registerName1( "stopMonitoringLocationPushes", @@ -34975,28 +34979,28 @@ class PedometerBindings { return __objc_msgSend_1002(obj, sel, center, radius, identifier); } - late final __objc_msgSend_1002Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ffi.Double, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1002 = - __objc_msgSend_1002Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - double, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1002Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ffi.Double, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1002 = __objc_msgSend_1002Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + double, + ffi.Pointer, + ) + >(); late final _sel_center1 = _registerName1("center"); late final _sel_radius1 = _registerName1("radius"); @@ -35007,30 +35011,30 @@ class PedometerBindings { late final _sel_containsCoordinate_1 = _registerName1("containsCoordinate:"); bool _objc_msgSend_1003( ffi.Pointer obj, - ffi.Pointer sel, - CLLocationCoordinate2D coordinate, - ) { - return __objc_msgSend_1003(obj, sel, coordinate); - } - - late final __objc_msgSend_1003Ptr = _lookup< - ffi.NativeFunction< - ffi.Bool Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1003 = - __objc_msgSend_1003Ptr - .asFunction< - bool Function( - ffi.Pointer, - ffi.Pointer, - CLLocationCoordinate2D, - ) - >(); + ffi.Pointer sel, + CLLocationCoordinate2D coordinate, + ) { + return __objc_msgSend_1003(obj, sel, coordinate); + } + + late final __objc_msgSend_1003Ptr = + _lookup< + ffi.NativeFunction< + ffi.Bool Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1003 = __objc_msgSend_1003Ptr + .asFunction< + bool Function( + ffi.Pointer, + ffi.Pointer, + CLLocationCoordinate2D, + ) + >(); late final _sel_startMonitoringForRegion_desiredAccuracy_1 = _registerName1( "startMonitoringForRegion:desiredAccuracy:", @@ -35044,26 +35048,26 @@ class PedometerBindings { return __objc_msgSend_1004(obj, sel, region, accuracy); } - late final __objc_msgSend_1004Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1004 = - __objc_msgSend_1004Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - double, - ) - >(); + late final __objc_msgSend_1004Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1004 = __objc_msgSend_1004Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + double, + ) + >(); late final _sel_stopMonitoringForRegion_1 = _registerName1( "stopMonitoringForRegion:", @@ -35076,24 +35080,24 @@ class PedometerBindings { return __objc_msgSend_1005(obj, sel, region); } - late final __objc_msgSend_1005Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1005 = - __objc_msgSend_1005Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1005Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1005 = __objc_msgSend_1005Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_startMonitoringForRegion_1 = _registerName1( "startMonitoringForRegion:", @@ -35114,24 +35118,24 @@ class PedometerBindings { return __objc_msgSend_1006(obj, sel, bytes); } - late final __objc_msgSend_1006Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1006 = - __objc_msgSend_1006Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1006Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1006 = __objc_msgSend_1006Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_getUUIDBytes_1 = _registerName1("getUUIDBytes:"); void _objc_msgSend_1007( @@ -35142,24 +35146,24 @@ class PedometerBindings { return __objc_msgSend_1007(obj, sel, uuid); } - late final __objc_msgSend_1007Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1007 = - __objc_msgSend_1007Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1007Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1007 = __objc_msgSend_1007Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); int _objc_msgSend_1008( ffi.Pointer obj, @@ -35169,24 +35173,24 @@ class PedometerBindings { return __objc_msgSend_1008(obj, sel, otherUUID); } - late final __objc_msgSend_1008Ptr = _lookup< - ffi.NativeFunction< - ffi.Int32 Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1008 = - __objc_msgSend_1008Ptr - .asFunction< - int Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1008Ptr = + _lookup< + ffi.NativeFunction< + ffi.Int32 Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1008 = __objc_msgSend_1008Ptr + .asFunction< + int Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_UUIDString1 = _registerName1("UUIDString"); late final _sel_initWithUUID_identifier_1 = _registerName1( @@ -35201,26 +35205,26 @@ class PedometerBindings { return __objc_msgSend_1009(obj, sel, uuid, identifier); } - late final __objc_msgSend_1009Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1009 = - __objc_msgSend_1009Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1009Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1009 = __objc_msgSend_1009Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithProximityUUID_identifier_1 = _registerName1( "initWithProximityUUID:identifier:", @@ -35238,28 +35242,28 @@ class PedometerBindings { return __objc_msgSend_1010(obj, sel, uuid, major, identifier); } - late final __objc_msgSend_1010Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Uint16, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1010 = - __objc_msgSend_1010Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1010Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Uint16, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1010 = __objc_msgSend_1010Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer, + ) + >(); late final _sel_initWithProximityUUID_major_identifier_1 = _registerName1( "initWithProximityUUID:major:identifier:", @@ -35278,30 +35282,30 @@ class PedometerBindings { return __objc_msgSend_1011(obj, sel, uuid, major, minor, identifier); } - late final __objc_msgSend_1011Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Uint16, - ffi.Uint16, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1011 = - __objc_msgSend_1011Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1011Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Uint16, + ffi.Uint16, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1011 = __objc_msgSend_1011Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ffi.Pointer, + ) + >(); late final _sel_initWithProximityUUID_major_minor_identifier_1 = _registerName1("initWithProximityUUID:major:minor:identifier:"); @@ -35319,22 +35323,22 @@ class PedometerBindings { return __objc_msgSend_1012(obj, sel); } - late final __objc_msgSend_1012Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1012 = - __objc_msgSend_1012Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1012Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1012 = __objc_msgSend_1012Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_major1 = _registerName1("major"); late final _sel_minor1 = _registerName1("minor"); @@ -35347,24 +35351,24 @@ class PedometerBindings { return __objc_msgSend_1013(obj, sel, uuid); } - late final __objc_msgSend_1013Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1013 = - __objc_msgSend_1013Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1013Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1013 = __objc_msgSend_1013Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_initWithUUID_major_1 = _registerName1("initWithUUID:major:"); instancetype _objc_msgSend_1014( @@ -35376,26 +35380,26 @@ class PedometerBindings { return __objc_msgSend_1014(obj, sel, uuid, major); } - late final __objc_msgSend_1014Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Uint16, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1014 = - __objc_msgSend_1014Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ) - >(); + late final __objc_msgSend_1014Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Uint16, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1014 = __objc_msgSend_1014Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ) + >(); late final _sel_initWithUUID_major_minor_1 = _registerName1( "initWithUUID:major:minor:", @@ -35410,28 +35414,28 @@ class PedometerBindings { return __objc_msgSend_1015(obj, sel, uuid, major, minor); } - late final __objc_msgSend_1015Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Uint16, - ffi.Uint16, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1015 = - __objc_msgSend_1015Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - int, - ) - >(); + late final __objc_msgSend_1015Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Uint16, + ffi.Uint16, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1015 = __objc_msgSend_1015Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + int, + ) + >(); late final _sel_initWithBeaconIdentityConstraint_identifier_1 = _registerName1("initWithBeaconIdentityConstraint:identifier:"); @@ -35444,26 +35448,26 @@ class PedometerBindings { return __objc_msgSend_1016(obj, sel, beaconIdentityConstraint, identifier); } - late final __objc_msgSend_1016Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1016 = - __objc_msgSend_1016Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1016Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1016 = __objc_msgSend_1016Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_peripheralDataWithMeasuredPower_1 = _registerName1( "peripheralDataWithMeasuredPower:", @@ -35476,24 +35480,24 @@ class PedometerBindings { return __objc_msgSend_1017(obj, sel, measuredPower); } - late final __objc_msgSend_1017Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1017 = - __objc_msgSend_1017Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1017Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1017 = __objc_msgSend_1017Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_beaconIdentityConstraint1 = _registerName1( "beaconIdentityConstraint", @@ -35505,22 +35509,22 @@ class PedometerBindings { return __objc_msgSend_1018(obj, sel); } - late final __objc_msgSend_1018Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1018 = - __objc_msgSend_1018Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1018Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1018 = __objc_msgSend_1018Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_proximityUUID1 = _registerName1("proximityUUID"); late final _sel_notifyEntryStateOnDisplay1 = _registerName1( @@ -35540,24 +35544,24 @@ class PedometerBindings { return __objc_msgSend_1019(obj, sel, region); } - late final __objc_msgSend_1019Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1019 = - __objc_msgSend_1019Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1019Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1019 = __objc_msgSend_1019Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stopRangingBeaconsInRegion_1 = _registerName1( "stopRangingBeaconsInRegion:", @@ -35573,24 +35577,24 @@ class PedometerBindings { return __objc_msgSend_1020(obj, sel, constraint); } - late final __objc_msgSend_1020Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1020 = - __objc_msgSend_1020Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1020Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1020 = __objc_msgSend_1020Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_stopRangingBeaconsSatisfyingConstraint_1 = _registerName1( "stopRangingBeaconsSatisfyingConstraint:", @@ -35606,26 +35610,26 @@ class PedometerBindings { return __objc_msgSend_1021(obj, sel, distance, timeout); } - late final __objc_msgSend_1021Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Double, - ffi.Double, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1021 = - __objc_msgSend_1021Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - double, - double, - ) - >(); + late final __objc_msgSend_1021Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Double, + ffi.Double, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1021 = __objc_msgSend_1021Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + double, + double, + ) + >(); late final _sel_disallowDeferredLocationUpdates1 = _registerName1( "disallowDeferredLocationUpdates", @@ -35647,28 +35651,28 @@ class PedometerBindings { return __objc_msgSend_1022(obj, sel, purposeKey, sampleCount, handler); } - late final __objc_msgSend_1022Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Long, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1022 = - __objc_msgSend_1022Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - int, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1022Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Long, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1022 = __objc_msgSend_1022Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + int, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_startMonitoringVisits1 = _registerName1( "startMonitoringVisits", @@ -35686,24 +35690,24 @@ class PedometerBindings { return __objc_msgSend_1023(obj, sel, placemark); } - late final __objc_msgSend_1023Ptr = _lookup< - ffi.NativeFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1023 = - __objc_msgSend_1023Ptr - .asFunction< - instancetype Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1023Ptr = + _lookup< + ffi.NativeFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1023 = __objc_msgSend_1023Ptr + .asFunction< + instancetype Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_region1 = _registerName1("region"); ffi.Pointer _objc_msgSend_1024( @@ -35713,22 +35717,22 @@ class PedometerBindings { return __objc_msgSend_1024(obj, sel); } - late final __objc_msgSend_1024Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1024 = - __objc_msgSend_1024Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1024Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1024 = __objc_msgSend_1024Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _sel_addressDictionary1 = _registerName1("addressDictionary"); late final _sel_thoroughfare1 = _registerName1("thoroughfare"); @@ -35754,22 +35758,22 @@ class PedometerBindings { return __objc_msgSend_1025(obj, sel); } - late final __objc_msgSend_1025Ptr = _lookup< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1025 = - __objc_msgSend_1025Ptr - .asFunction< - ffi.Pointer Function( - ffi.Pointer, - ffi.Pointer, - ) - >(); + late final __objc_msgSend_1025Ptr = + _lookup< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1025 = __objc_msgSend_1025Ptr + .asFunction< + ffi.Pointer Function( + ffi.Pointer, + ffi.Pointer, + ) + >(); late final _class_CLGeocoder1 = _getClass1("CLGeocoder"); late final _sel_isGeocoding1 = _registerName1("isGeocoding"); @@ -35785,26 +35789,26 @@ class PedometerBindings { return __objc_msgSend_1026(obj, sel, location, completionHandler); } - late final __objc_msgSend_1026Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1026 = - __objc_msgSend_1026Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1026Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1026 = __objc_msgSend_1026Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_reverseGeocodeLocation_preferredLocale_completionHandler_1 = _registerName1( @@ -35820,28 +35824,28 @@ class PedometerBindings { return __objc_msgSend_1027(obj, sel, location, locale, completionHandler); } - late final __objc_msgSend_1027Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1027 = - __objc_msgSend_1027Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1027Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1027 = __objc_msgSend_1027Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_geocodeAddressDictionary_completionHandler_1 = _registerName1( "geocodeAddressDictionary:completionHandler:", @@ -35855,26 +35859,26 @@ class PedometerBindings { return __objc_msgSend_1028(obj, sel, addressDictionary, completionHandler); } - late final __objc_msgSend_1028Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1028 = - __objc_msgSend_1028Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1028Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1028 = __objc_msgSend_1028Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_geocodeAddressString_inRegion_completionHandler_1 = _registerName1("geocodeAddressString:inRegion:completionHandler:"); @@ -35894,28 +35898,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_1029Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1029 = - __objc_msgSend_1029Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1029Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1029 = __objc_msgSend_1029Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_geocodeAddressString_inRegion_preferredLocale_completionHandler_1 = _registerName1( @@ -35939,30 +35943,30 @@ class PedometerBindings { ); } - late final __objc_msgSend_1030Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1030 = - __objc_msgSend_1030Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1030Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1030 = __objc_msgSend_1030Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_geocodeAddressString_completionHandler_1 = _registerName1( "geocodeAddressString:completionHandler:", @@ -35976,26 +35980,26 @@ class PedometerBindings { return __objc_msgSend_1031(obj, sel, addressString, completionHandler); } - late final __objc_msgSend_1031Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1031 = - __objc_msgSend_1031Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1031Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1031 = __objc_msgSend_1031Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_cancelGeocode1 = _registerName1("cancelGeocode"); late final _sel_geocodePostalAddress_completionHandler_1 = _registerName1( @@ -36010,26 +36014,26 @@ class PedometerBindings { return __objc_msgSend_1032(obj, sel, postalAddress, completionHandler); } - late final __objc_msgSend_1032Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1032 = - __objc_msgSend_1032Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1032Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1032 = __objc_msgSend_1032Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); late final _sel_geocodePostalAddress_preferredLocale_completionHandler_1 = _registerName1("geocodePostalAddress:preferredLocale:completionHandler:"); @@ -36049,28 +36053,28 @@ class PedometerBindings { ); } - late final __objc_msgSend_1033Ptr = _lookup< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - > - >('objc_msgSend'); - late final __objc_msgSend_1033 = - __objc_msgSend_1033Ptr - .asFunction< - void Function( - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer<_ObjCBlock>, - ) - >(); + late final __objc_msgSend_1033Ptr = + _lookup< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + > + >('objc_msgSend'); + late final __objc_msgSend_1033 = __objc_msgSend_1033Ptr + .asFunction< + void Function( + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer<_ObjCBlock>, + ) + >(); ObjCBlock_ffiVoid_CMPedometerData_NSError wrapCallback( ObjCBlock_ffiVoid_CMPedometerData_NSError callback, @@ -36083,16 +36087,14 @@ class PedometerBindings { ); } - late final _wrapCallbackPtr = _lookup< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function(ffi.Pointer<_ObjCBlock>) - > - >('wrapCallback'); - late final _wrapCallback = - _wrapCallbackPtr - .asFunction< - ffi.Pointer<_ObjCBlock> Function(ffi.Pointer<_ObjCBlock>) - >(); + late final _wrapCallbackPtr = + _lookup< + ffi.NativeFunction< + ffi.Pointer<_ObjCBlock> Function(ffi.Pointer<_ObjCBlock>) + > + >('wrapCallback'); + late final _wrapCallback = _wrapCallbackPtr + .asFunction Function(ffi.Pointer<_ObjCBlock>)>(); } class _ObjCWrapper implements ffi.Finalizable { @@ -38504,31 +38506,31 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_277_stret( - stret, - _id, - _lib._sel_localizedStandardRangeOfString_1, - str._id, - ) + stret, + _id, + _lib._sel_localizedStandardRangeOfString_1, + str._id, + ) : stret.ref = _lib._objc_msgSend_277( - _id, - _lib._sel_localizedStandardRangeOfString_1, - str._id, - ); + _id, + _lib._sel_localizedStandardRangeOfString_1, + str._id, + ); } void rangeOfString_(ffi.Pointer<_NSRange> stret, NSString searchString) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_277_stret( - stret, - _id, - _lib._sel_rangeOfString_1, - searchString._id, - ) + stret, + _id, + _lib._sel_rangeOfString_1, + searchString._id, + ) : stret.ref = _lib._objc_msgSend_277( - _id, - _lib._sel_rangeOfString_1, - searchString._id, - ); + _id, + _lib._sel_rangeOfString_1, + searchString._id, + ); } void rangeOfString_options_( @@ -38538,18 +38540,18 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_278_stret( - stret, - _id, - _lib._sel_rangeOfString_options_1, - searchString._id, - mask, - ) + stret, + _id, + _lib._sel_rangeOfString_options_1, + searchString._id, + mask, + ) : stret.ref = _lib._objc_msgSend_278( - _id, - _lib._sel_rangeOfString_options_1, - searchString._id, - mask, - ); + _id, + _lib._sel_rangeOfString_options_1, + searchString._id, + mask, + ); } void rangeOfString_options_range_( @@ -38560,20 +38562,20 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_279_stret( - stret, - _id, - _lib._sel_rangeOfString_options_range_1, - searchString._id, - mask, - rangeOfReceiverToSearch, - ) + stret, + _id, + _lib._sel_rangeOfString_options_range_1, + searchString._id, + mask, + rangeOfReceiverToSearch, + ) : stret.ref = _lib._objc_msgSend_279( - _id, - _lib._sel_rangeOfString_options_range_1, - searchString._id, - mask, - rangeOfReceiverToSearch, - ); + _id, + _lib._sel_rangeOfString_options_range_1, + searchString._id, + mask, + rangeOfReceiverToSearch, + ); } void rangeOfString_options_range_locale_( @@ -38585,22 +38587,22 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_298_stret( - stret, - _id, - _lib._sel_rangeOfString_options_range_locale_1, - searchString._id, - mask, - rangeOfReceiverToSearch, - locale?._id ?? ffi.nullptr, - ) + stret, + _id, + _lib._sel_rangeOfString_options_range_locale_1, + searchString._id, + mask, + rangeOfReceiverToSearch, + locale?._id ?? ffi.nullptr, + ) : stret.ref = _lib._objc_msgSend_298( - _id, - _lib._sel_rangeOfString_options_range_locale_1, - searchString._id, - mask, - rangeOfReceiverToSearch, - locale?._id ?? ffi.nullptr, - ); + _id, + _lib._sel_rangeOfString_options_range_locale_1, + searchString._id, + mask, + rangeOfReceiverToSearch, + locale?._id ?? ffi.nullptr, + ); } void rangeOfCharacterFromSet_( @@ -38609,16 +38611,16 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_299_stret( - stret, - _id, - _lib._sel_rangeOfCharacterFromSet_1, - searchSet._id, - ) + stret, + _id, + _lib._sel_rangeOfCharacterFromSet_1, + searchSet._id, + ) : stret.ref = _lib._objc_msgSend_299( - _id, - _lib._sel_rangeOfCharacterFromSet_1, - searchSet._id, - ); + _id, + _lib._sel_rangeOfCharacterFromSet_1, + searchSet._id, + ); } void rangeOfCharacterFromSet_options_( @@ -38628,18 +38630,18 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_300_stret( - stret, - _id, - _lib._sel_rangeOfCharacterFromSet_options_1, - searchSet._id, - mask, - ) + stret, + _id, + _lib._sel_rangeOfCharacterFromSet_options_1, + searchSet._id, + mask, + ) : stret.ref = _lib._objc_msgSend_300( - _id, - _lib._sel_rangeOfCharacterFromSet_options_1, - searchSet._id, - mask, - ); + _id, + _lib._sel_rangeOfCharacterFromSet_options_1, + searchSet._id, + mask, + ); } void rangeOfCharacterFromSet_options_range_( @@ -38650,20 +38652,20 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_301_stret( - stret, - _id, - _lib._sel_rangeOfCharacterFromSet_options_range_1, - searchSet._id, - mask, - rangeOfReceiverToSearch, - ) + stret, + _id, + _lib._sel_rangeOfCharacterFromSet_options_range_1, + searchSet._id, + mask, + rangeOfReceiverToSearch, + ) : stret.ref = _lib._objc_msgSend_301( - _id, - _lib._sel_rangeOfCharacterFromSet_options_range_1, - searchSet._id, - mask, - rangeOfReceiverToSearch, - ); + _id, + _lib._sel_rangeOfCharacterFromSet_options_range_1, + searchSet._id, + mask, + rangeOfReceiverToSearch, + ); } void rangeOfComposedCharacterSequenceAtIndex_( @@ -38672,16 +38674,16 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_302_stret( - stret, - _id, - _lib._sel_rangeOfComposedCharacterSequenceAtIndex_1, - index, - ) + stret, + _id, + _lib._sel_rangeOfComposedCharacterSequenceAtIndex_1, + index, + ) : stret.ref = _lib._objc_msgSend_302( - _id, - _lib._sel_rangeOfComposedCharacterSequenceAtIndex_1, - index, - ); + _id, + _lib._sel_rangeOfComposedCharacterSequenceAtIndex_1, + index, + ); } void rangeOfComposedCharacterSequencesForRange_( @@ -38690,16 +38692,16 @@ class NSString extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_303_stret( - stret, - _id, - _lib._sel_rangeOfComposedCharacterSequencesForRange_1, - range, - ) + stret, + _id, + _lib._sel_rangeOfComposedCharacterSequencesForRange_1, + range, + ) : stret.ref = _lib._objc_msgSend_303( - _id, - _lib._sel_rangeOfComposedCharacterSequencesForRange_1, - range, - ); + _id, + _lib._sel_rangeOfComposedCharacterSequencesForRange_1, + range, + ); } NSString stringByAppendingString_(NSString aString) { @@ -38833,16 +38835,16 @@ class NSString extends NSObject { void lineRangeForRange_(ffi.Pointer<_NSRange> stret, _NSRange range) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_303_stret( - stret, - _id, - _lib._sel_lineRangeForRange_1, - range, - ) + stret, + _id, + _lib._sel_lineRangeForRange_1, + range, + ) : stret.ref = _lib._objc_msgSend_303( - _id, - _lib._sel_lineRangeForRange_1, - range, - ); + _id, + _lib._sel_lineRangeForRange_1, + range, + ); } void getParagraphStart_end_contentsEnd_forRange_( @@ -38864,16 +38866,16 @@ class NSString extends NSObject { void paragraphRangeForRange_(ffi.Pointer<_NSRange> stret, _NSRange range) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_303_stret( - stret, - _id, - _lib._sel_paragraphRangeForRange_1, - range, - ) + stret, + _id, + _lib._sel_paragraphRangeForRange_1, + range, + ) : stret.ref = _lib._objc_msgSend_303( - _id, - _lib._sel_paragraphRangeForRange_1, - range, - ); + _id, + _lib._sel_paragraphRangeForRange_1, + range, + ); } void enumerateSubstringsInRange_options_usingBlock_( @@ -40629,20 +40631,20 @@ class NSCoder extends NSObject { double decodeFloatForKey_(NSString key) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_253_fpret( - _id, - _lib._sel_decodeFloatForKey_1, - key._id, - ) + _id, + _lib._sel_decodeFloatForKey_1, + key._id, + ) : _lib._objc_msgSend_253(_id, _lib._sel_decodeFloatForKey_1, key._id); } double decodeDoubleForKey_(NSString key) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_254_fpret( - _id, - _lib._sel_decodeDoubleForKey_1, - key._id, - ) + _id, + _lib._sel_decodeDoubleForKey_1, + key._id, + ) : _lib._objc_msgSend_254(_id, _lib._sel_decodeDoubleForKey_1, key._id); } @@ -41157,20 +41159,20 @@ class NSData extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_217_stret( - stret, - _id, - _lib._sel_rangeOfData_options_range_1, - dataToFind._id, - mask, - searchRange, - ) + stret, + _id, + _lib._sel_rangeOfData_options_range_1, + dataToFind._id, + mask, + searchRange, + ) : stret.ref = _lib._objc_msgSend_217( - _id, - _lib._sel_rangeOfData_options_range_1, - dataToFind._id, - mask, - searchRange, - ); + _id, + _lib._sel_rangeOfData_options_range_1, + dataToFind._id, + mask, + searchRange, + ); } void enumerateByteRangesUsingBlock_( @@ -44647,11 +44649,11 @@ class NSError extends NSObject { return _ret.address == 0 ? null : ObjCBlock_ObjCObject_NSError_NSString._( - _ret, - _lib, - retain: true, - release: true, - ); + _ret, + _lib, + retain: true, + release: true, + ); } @override @@ -44870,10 +44872,11 @@ _ObjCBlock_ObjCObject_NSError_NSString_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ObjCObject_NSError_NSString_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ObjCObject_NSError_NSString_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ObjCObject_NSError_NSString extends _ObjCBlockBase { ObjCBlock_ObjCObject_NSError_NSString._( @@ -44903,12 +44906,13 @@ class ObjCBlock_ObjCObject_NSError_NSString extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ObjCObject_NSError_NSString_fnPtrTrampoline).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ObjCObject_NSError_NSString_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -44927,14 +44931,13 @@ class ObjCBlock_ObjCObject_NSError_NSString extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ObjCObject_NSError_NSString_closureTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ObjCObject_NSError_NSString_closureTrampoline) + .cast(), _ObjCBlock_ObjCObject_NSError_NSString_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( @@ -44950,47 +44953,47 @@ class ObjCBlock_ObjCObject_NSError_NSString extends _ObjCBlockBase { NSObject? call(NSError arg0, NSString arg1) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ffi.Pointer arg1, - ) - > - >() - .asFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >()(_id, arg0._id, arg1._id) - .address == - 0 - ? null - : NSObject._( - _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ffi.Pointer arg1, - ) - > - >() - .asFunction< + .cast< + ffi.NativeFunction< ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, + ffi.Pointer arg1, ) - >()(_id, arg0._id, arg1._id), - _lib, - retain: false, - release: true, - ); + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >()(_id, arg0._id, arg1._id) + .address == + 0 + ? null + : NSObject._( + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, + ffi.Pointer arg1, + ) + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >()(_id, arg0._id, arg1._id), + _lib, + retain: false, + release: true, + ); } final class _ObjCBlockDesc extends ffi.Struct { @@ -45490,10 +45493,11 @@ void _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureTrampoline( ffi.Pointer<_ObjCBlock> block, int arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_ffiUnsignedLong_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_ffiUnsignedLong_bool._( @@ -45520,12 +45524,13 @@ class ObjCBlock_ffiVoid_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.UnsignedLong, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ffiUnsignedLong_bool_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.UnsignedLong, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ffiUnsignedLong_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -45544,14 +45549,13 @@ class ObjCBlock_ffiVoid_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.UnsignedLong, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_registerClosure( (int arg0, ffi.Pointer arg1) => fn(arg0, arg1), ), @@ -45574,15 +45578,17 @@ class ObjCBlock_ffiVoid_ffiUnsignedLong_bool extends _ObjCBlockBase { void Function(int, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.UnsignedLong, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.UnsignedLong, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ffiUnsignedLong_bool_registerClosure( @@ -45646,10 +45652,11 @@ bool _ObjCBlock_bool_ffiUnsignedLong_bool_closureTrampoline( ffi.Pointer<_ObjCBlock> block, int arg0, ffi.Pointer arg1, -) => _ObjCBlock_bool_ffiUnsignedLong_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_bool_ffiUnsignedLong_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_bool_ffiUnsignedLong_bool extends _ObjCBlockBase { ObjCBlock_bool_ffiUnsignedLong_bool._( @@ -45676,15 +45683,13 @@ class ObjCBlock_bool_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ffiUnsignedLong_bool_fnPtrTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.UnsignedLong, + ffi.Pointer, + ) + >(_ObjCBlock_bool_ffiUnsignedLong_bool_fnPtrTrampoline, false) + .cast(), ptr.cast(), ), lib, @@ -45703,15 +45708,16 @@ class ObjCBlock_bool_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ffiUnsignedLong_bool_closureTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.UnsignedLong, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ffiUnsignedLong_bool_closureTrampoline, + false, + ) + .cast(), _ObjCBlock_bool_ffiUnsignedLong_bool_registerClosure( (int arg0, ffi.Pointer arg1) => fn(arg0, arg1), ), @@ -45791,12 +45797,13 @@ class ObjCBlock_ffiVoid_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - _NSRange, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSRange_bool_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSRange_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -45815,12 +45822,13 @@ class ObjCBlock_ffiVoid_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - _NSRange, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSRange_bool_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSRange_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSRange_bool_registerClosure( (_NSRange arg0, ffi.Pointer arg1) => fn(arg0, arg1), ), @@ -45843,14 +45851,17 @@ class ObjCBlock_ffiVoid_NSRange_bool extends _ObjCBlockBase { void Function(_NSRange, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - _NSRange, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSRange_bool_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + _NSRange, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSRange_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSRange_bool_registerClosure( @@ -45915,10 +45926,11 @@ void _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureTrampoline( ffi.Pointer arg0, int arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool._( @@ -45949,15 +45961,14 @@ class ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -45976,15 +45987,16 @@ class ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureTrampoline, + ) + .cast(), _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_registerClosure( ( ffi.Pointer arg0, @@ -46015,16 +46027,18 @@ class ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { void Function(NSObject, int, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ObjCObject_ffiUnsignedLong_bool_registerClosure( @@ -46110,10 +46124,11 @@ bool _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_closureTrampoline( ffi.Pointer arg0, int arg1, ffi.Pointer arg2, -) => _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool._( @@ -46144,16 +46159,17 @@ class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_fnPtrTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_fnPtrTrampoline, + false, + ) + .cast(), ptr.cast(), ), lib, @@ -46172,16 +46188,17 @@ class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_closureTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_closureTrampoline, + false, + ) + .cast(), _ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool_registerClosure( ( ffi.Pointer arg0, @@ -46255,10 +46272,11 @@ int _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject extends _ObjCBlockBase { @@ -46289,15 +46307,16 @@ class ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Int32 Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_fnPtrTrampoline, - 0, - ).cast(), + ffi.Int32 Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_fnPtrTrampoline, + 0, + ) + .cast(), ptr.cast(), ), lib, @@ -46316,15 +46335,16 @@ class ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Int32 Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_closureTrampoline, - 0, - ).cast(), + ffi.Int32 Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_closureTrampoline, + 0, + ) + .cast(), _ObjCBlock_NSComparisonResult_ObjCObject_ObjCObject_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( NSObject._(arg0, lib, retain: true, release: true), @@ -46418,10 +46438,11 @@ bool _ObjCBlock_bool_ObjCObject_ObjCObject_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_bool_ObjCObject_ObjCObject_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_bool_ObjCObject_ObjCObject_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_bool_ObjCObject_ObjCObject extends _ObjCBlockBase { ObjCBlock_bool_ObjCObject_ObjCObject._( @@ -46451,15 +46472,16 @@ class ObjCBlock_bool_ObjCObject_ObjCObject extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_ObjCObject_fnPtrTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_ObjCObject_fnPtrTrampoline, + false, + ) + .cast(), ptr.cast(), ), lib, @@ -46478,15 +46500,16 @@ class ObjCBlock_bool_ObjCObject_ObjCObject extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_ObjCObject_closureTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_ObjCObject_closureTrampoline, + false, + ) + .cast(), _ObjCBlock_bool_ObjCObject_ObjCObject_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( NSObject._(arg0, lib, retain: true, release: true), @@ -46824,10 +46847,11 @@ bool _ObjCBlock_bool_ObjCObject_NSDictionary_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_bool_ObjCObject_NSDictionary_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_bool_ObjCObject_NSDictionary_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_bool_ObjCObject_NSDictionary extends _ObjCBlockBase { ObjCBlock_bool_ObjCObject_NSDictionary._( @@ -46857,15 +46881,16 @@ class ObjCBlock_bool_ObjCObject_NSDictionary extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_NSDictionary_fnPtrTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_NSDictionary_fnPtrTrampoline, + false, + ) + .cast(), ptr.cast(), ), lib, @@ -46884,15 +46909,16 @@ class ObjCBlock_bool_ObjCObject_NSDictionary extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_NSDictionary_closureTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_NSDictionary_closureTrampoline, + false, + ) + .cast(), _ObjCBlock_bool_ObjCObject_NSDictionary_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -47717,10 +47743,11 @@ void _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureTrampoline( ffi.Pointer arg0, ffi.Pointer arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool._( @@ -47751,15 +47778,14 @@ class ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -47778,15 +47804,14 @@ class ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_registerClosure( ( ffi.Pointer arg0, @@ -47817,16 +47842,18 @@ class ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { void Function(NSObject, NSObject, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ObjCObject_ObjCObject_bool_registerClosure( @@ -47927,10 +47954,11 @@ bool _ObjCBlock_bool_ObjCObject_ObjCObject_bool_closureTrampoline( ffi.Pointer arg0, ffi.Pointer arg1, ffi.Pointer arg2, -) => _ObjCBlock_bool_ObjCObject_ObjCObject_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_bool_ObjCObject_ObjCObject_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_bool_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { ObjCBlock_bool_ObjCObject_ObjCObject_bool._( @@ -47961,16 +47989,17 @@ class ObjCBlock_bool_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_ObjCObject_bool_fnPtrTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_ObjCObject_bool_fnPtrTrampoline, + false, + ) + .cast(), ptr.cast(), ), lib, @@ -47989,16 +48018,17 @@ class ObjCBlock_bool_ObjCObject_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_ObjCObject_bool_closureTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_bool_ObjCObject_ObjCObject_bool_closureTrampoline, + false, + ) + .cast(), _ObjCBlock_bool_ObjCObject_ObjCObject_bool_registerClosure( ( ffi.Pointer arg0, @@ -48085,13 +48115,13 @@ class NSDate extends NSObject { double get timeIntervalSinceReferenceDate { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_157_fpret( - _id, - _lib._sel_timeIntervalSinceReferenceDate1, - ) + _id, + _lib._sel_timeIntervalSinceReferenceDate1, + ) : _lib._objc_msgSend_157( - _id, - _lib._sel_timeIntervalSinceReferenceDate1, - ); + _id, + _lib._sel_timeIntervalSinceReferenceDate1, + ); } @override @@ -48123,15 +48153,15 @@ class NSDate extends NSObject { double timeIntervalSinceDate_(NSDate anotherDate) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_159_fpret( - _id, - _lib._sel_timeIntervalSinceDate_1, - anotherDate._id, - ) + _id, + _lib._sel_timeIntervalSinceDate_1, + anotherDate._id, + ) : _lib._objc_msgSend_159( - _id, - _lib._sel_timeIntervalSinceDate_1, - anotherDate._id, - ); + _id, + _lib._sel_timeIntervalSinceDate_1, + anotherDate._id, + ); } double get timeIntervalSinceNow { @@ -48501,10 +48531,11 @@ void _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureTrampoline( ffi.Pointer arg0, _NSRange arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_ffiVoid_NSRange_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_ffiVoid_NSRange_bool._( @@ -48535,13 +48566,14 @@ class ObjCBlock_ffiVoid_ffiVoid_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -48560,15 +48592,14 @@ class ObjCBlock_ffiVoid_ffiVoid_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_registerClosure( ( ffi.Pointer arg0, @@ -48595,16 +48626,18 @@ class ObjCBlock_ffiVoid_ffiVoid_NSRange_bool extends _ObjCBlockBase { void Function(ffi.Pointer, _NSRange, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ffiVoid_NSRange_bool_registerClosure( @@ -48689,10 +48722,11 @@ void _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, int arg1, -) => _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong extends _ObjCBlockBase { ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong._( @@ -48719,14 +48753,13 @@ class ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ) - >( - _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ) + >(_ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -48745,14 +48778,13 @@ class ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ) - >( - _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ) + >(_ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_registerClosure( (ffi.Pointer arg0, int arg1) => fn(arg0, arg1), ), @@ -48775,15 +48807,17 @@ class ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong extends _ObjCBlockBase { void Function(ffi.Pointer, int) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ) - >.listener( - _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ) + >.listener( + _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ffiVoid_ffiUnsignedLong_registerClosure( @@ -49956,10 +49990,11 @@ void _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureTrampoline( _NSRange arg1, _NSRange arg2, ffi.Pointer arg3, -) => _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2, arg3); +) => + _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2, arg3); class ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool._( @@ -49991,16 +50026,15 @@ class ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -50019,16 +50053,15 @@ class ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_registerClosure( ( ffi.Pointer arg0, @@ -50063,17 +50096,19 @@ class ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool extends _ObjCBlockBase { void Function(NSString?, _NSRange, _NSRange, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - _NSRange, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + _NSRange, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSString_NSRange_NSRange_bool_registerClosure( @@ -50164,10 +50199,11 @@ void _ObjCBlock_ffiVoid_NSString_bool_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_NSString_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_NSString_bool_closureRegistry[block.ref.target.address]!( + arg0, + arg1, + ); class ObjCBlock_ffiVoid_NSString_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSString_bool._( @@ -50197,12 +50233,13 @@ class ObjCBlock_ffiVoid_NSString_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSString_bool_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSString_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -50221,12 +50258,13 @@ class ObjCBlock_ffiVoid_NSString_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSString_bool_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSString_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSString_bool_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn(NSString._(arg0, lib, retain: true, release: true), arg1), @@ -50250,14 +50288,17 @@ class ObjCBlock_ffiVoid_NSString_bool extends _ObjCBlockBase { void Function(NSString, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSString_bool_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSString_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSString_bool_registerClosure( @@ -50304,19 +50345,20 @@ void _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_fnPtrTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, int arg1, -) => block.ref.target - .cast< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer arg0, - ffi.UnsignedLong arg1, - ) - > - >() - .asFunction, int)>()( - arg0, - arg1, -); +) => + block.ref.target + .cast< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer arg0, + ffi.UnsignedLong arg1, + ) + > + >() + .asFunction, int)>()( + arg0, + arg1, + ); final _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureRegistry = , int)>{}; int _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureRegistryIndex = @@ -50335,10 +50377,11 @@ void _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, int arg1, -) => _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong extends _ObjCBlockBase { @@ -50369,14 +50412,13 @@ class ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ) - >( - _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ) + >(_ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -50395,14 +50437,15 @@ class ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ) - >( - _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ) + >( + _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureTrampoline, + ) + .cast(), _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_registerClosure( (ffi.Pointer arg0, int arg1) => fn(arg0, arg1), ), @@ -50425,15 +50468,17 @@ class ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong void Function(ffi.Pointer, int) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.UnsignedLong, - ) - >.listener( - _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.UnsignedLong, + ) + >.listener( + _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ffiUnsignedShort_ffiUnsignedLong_registerClosure( @@ -50765,10 +50810,11 @@ void _ObjCBlock_ffiVoid_ObjCObject_bool_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_ObjCObject_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_ObjCObject_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_ObjCObject_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_ObjCObject_bool._( @@ -50798,12 +50844,13 @@ class ObjCBlock_ffiVoid_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ObjCObject_bool_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -50822,12 +50869,13 @@ class ObjCBlock_ffiVoid_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ObjCObject_bool_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ObjCObject_bool_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn(NSObject._(arg0, lib, retain: true, release: true), arg1), @@ -50851,14 +50899,17 @@ class ObjCBlock_ffiVoid_ObjCObject_bool extends _ObjCBlockBase { void Function(NSObject, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_ObjCObject_bool_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ObjCObject_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ObjCObject_bool_registerClosure( @@ -50960,12 +51011,13 @@ class ObjCBlock_bool_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline, false).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline, false) + .cast(), ptr.cast(), ), lib, @@ -50984,15 +51036,13 @@ class ObjCBlock_bool_ObjCObject_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_bool_ObjCObject_bool_closureTrampoline, - false, - ).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_bool_ObjCObject_bool_closureTrampoline, false) + .cast(), _ObjCBlock_bool_ObjCObject_bool_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn(NSObject._(arg0, lib, retain: true, release: true), arg1), @@ -52102,11 +52152,12 @@ class ObjCBlock_ffiVoid_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -52125,11 +52176,12 @@ class ObjCBlock_ffiVoid_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSError_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSError_registerClosure( (ffi.Pointer arg0) => fn( arg0.address == 0 @@ -52156,13 +52208,14 @@ class ObjCBlock_ffiVoid_NSError extends _ObjCBlockBase { void Function(NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSError_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener(_ObjCBlock_ffiVoid_NSError_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSError_registerClosure( @@ -52310,12 +52363,13 @@ class ObjCBlock_bool_NSURL_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_bool_NSURL_NSError_fnPtrTrampoline, false).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_bool_NSURL_NSError_fnPtrTrampoline, false) + .cast(), ptr.cast(), ), lib, @@ -52334,12 +52388,13 @@ class ObjCBlock_bool_NSURL_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Bool Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_bool_NSURL_NSError_closureTrampoline, false).cast(), + ffi.Bool Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_bool_NSURL_NSError_closureTrampoline, false) + .cast(), _ObjCBlock_bool_NSURL_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( NSURL._(arg0, lib, retain: true, release: true), @@ -52406,10 +52461,11 @@ void _ObjCBlock_ffiVoid_NSDictionary_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_NSDictionary_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_NSDictionary_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_NSDictionary_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSDictionary_NSError._( @@ -52439,12 +52495,13 @@ class ObjCBlock_ffiVoid_NSDictionary_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSDictionary_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDictionary_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -52463,14 +52520,13 @@ class ObjCBlock_ffiVoid_NSDictionary_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSDictionary_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDictionary_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSDictionary_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -52500,15 +52556,17 @@ class ObjCBlock_ffiVoid_NSDictionary_NSError extends _ObjCBlockBase { void Function(NSDictionary?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSDictionary_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSDictionary_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSDictionary_NSError_registerClosure( @@ -56315,10 +56373,11 @@ class NSThread extends NSObject { } } -void _ObjCBlock_ffiVoid_fnPtrTrampoline(ffi.Pointer<_ObjCBlock> block) => - block.ref.target - .cast>() - .asFunction()(); +void _ObjCBlock_ffiVoid_fnPtrTrampoline(ffi.Pointer<_ObjCBlock> block) => block + .ref + .target + .cast>() + .asFunction()(); final _ObjCBlock_ffiVoid_closureRegistry = {}; int _ObjCBlock_ffiVoid_closureRegistryIndex = 0; ffi.Pointer _ObjCBlock_ffiVoid_registerClosure(void Function() fn) { @@ -56350,8 +56409,9 @@ class ObjCBlock_ffiVoid extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function(ffi.Pointer<_ObjCBlock>) - >(_ObjCBlock_ffiVoid_fnPtrTrampoline).cast(), + ffi.Void Function(ffi.Pointer<_ObjCBlock>) + >(_ObjCBlock_ffiVoid_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -56368,8 +56428,9 @@ class ObjCBlock_ffiVoid extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function(ffi.Pointer<_ObjCBlock>) - >(_ObjCBlock_ffiVoid_closureTrampoline).cast(), + ffi.Void Function(ffi.Pointer<_ObjCBlock>) + >(_ObjCBlock_ffiVoid_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_registerClosure(() => fn()), ), lib, @@ -56388,10 +56449,11 @@ class ObjCBlock_ffiVoid extends _ObjCBlockBase { ObjCBlock_ffiVoid.listener(PedometerBindings lib, void Function() fn) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function(ffi.Pointer<_ObjCBlock>) - >.listener(_ObjCBlock_ffiVoid_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function(ffi.Pointer<_ObjCBlock>) + >.listener(_ObjCBlock_ffiVoid_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_registerClosure(() => fn()), @@ -57159,11 +57221,11 @@ class NSItemProvider extends NSObject { return _ret.address == 0 ? null : ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary._( - _ret, - _lib, - retain: true, - release: true, - ); + _ret, + _lib, + retain: true, + release: true, + ); } set previewImageHandler( @@ -57326,9 +57388,9 @@ _ObjCBlock_NSProgress_ffiVoidNSDataNSError_fnPtrTrampoline( ffi.Pointer Function(ffi.Pointer<_ObjCBlock> arg0) > >() - .asFunction Function(ffi.Pointer<_ObjCBlock>)>()( - arg0, -); + .asFunction< + ffi.Pointer Function(ffi.Pointer<_ObjCBlock>) + >()(arg0); final _ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureRegistry = Function(ffi.Pointer<_ObjCBlock>)>{}; int _ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureRegistryIndex = 0; @@ -57345,10 +57407,11 @@ ffi.Pointer _ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer<_ObjCBlock> arg0, -) => _ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureRegistry[block - .ref - .target - .address]!(arg0); +) => + _ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureRegistry[block + .ref + .target + .address]!(arg0); class ObjCBlock_NSProgress_ffiVoidNSDataNSError extends _ObjCBlockBase { ObjCBlock_NSProgress_ffiVoidNSDataNSError._( @@ -57375,13 +57438,12 @@ class ObjCBlock_NSProgress_ffiVoidNSDataNSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >( - _ObjCBlock_NSProgress_ffiVoidNSDataNSError_fnPtrTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >(_ObjCBlock_NSProgress_ffiVoidNSDataNSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -57400,13 +57462,12 @@ class ObjCBlock_NSProgress_ffiVoidNSDataNSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >( - _ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >(_ObjCBlock_NSProgress_ffiVoidNSDataNSError_closureTrampoline) + .cast(), _ObjCBlock_NSProgress_ffiVoidNSDataNSError_registerClosure( (ffi.Pointer<_ObjCBlock> arg0) => fn( @@ -57426,43 +57487,43 @@ class ObjCBlock_NSProgress_ffiVoidNSDataNSError extends _ObjCBlockBase { NSProgress? call(ObjCBlock_ffiVoid_NSData_NSError arg0) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer<_ObjCBlock> arg0, - ) - > - >() - .asFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >()(_id, arg0._id) - .address == - 0 - ? null - : NSProgress._( - _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer<_ObjCBlock> arg0, - ) - > - >() - .asFunction< + .cast< + ffi.NativeFunction< ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer<_ObjCBlock> arg0, ) - >()(_id, arg0._id), - _lib, - retain: false, - release: true, - ); + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >()(_id, arg0._id) + .address == + 0 + ? null + : NSProgress._( + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer<_ObjCBlock> arg0, + ) + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >()(_id, arg0._id), + _lib, + retain: false, + release: true, + ); } class NSProgress extends NSObject { @@ -58023,9 +58084,9 @@ ffi.Pointer<_ObjCBlock> _ObjCBlock_ffiVoid_NSProgress_fnPtrTrampoline( ffi.Pointer<_ObjCBlock> Function(ffi.Pointer arg0) > >() - .asFunction Function(ffi.Pointer)>()( - arg0, -); + .asFunction< + ffi.Pointer<_ObjCBlock> Function(ffi.Pointer) + >()(arg0); final _ObjCBlock_ffiVoid_NSProgress_closureRegistry = Function(ffi.Pointer)>{}; int _ObjCBlock_ffiVoid_NSProgress_closureRegistryIndex = 0; @@ -58069,11 +58130,12 @@ class ObjCBlock_ffiVoid_NSProgress extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSProgress_fnPtrTrampoline).cast(), + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSProgress_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -58092,11 +58154,12 @@ class ObjCBlock_ffiVoid_NSProgress extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSProgress_closureTrampoline).cast(), + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSProgress_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSProgress_registerClosure( (ffi.Pointer arg0) => fn( @@ -58111,43 +58174,43 @@ class ObjCBlock_ffiVoid_NSProgress extends _ObjCBlockBase { ObjCBlock_ffiVoid? call(NSProgress arg0) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ) - > - >() - .asFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >()(_id, arg0._id) - .address == - 0 - ? null - : ObjCBlock_ffiVoid._( - _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ) - > - >() - .asFunction< + .cast< + ffi.NativeFunction< ffi.Pointer<_ObjCBlock> Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, ) - >()(_id, arg0._id), - _lib, - retain: false, - release: true, - ); + > + >() + .asFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >()(_id, arg0._id) + .address == + 0 + ? null + : ObjCBlock_ffiVoid._( + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, + ) + > + >() + .asFunction< + ffi.Pointer<_ObjCBlock> Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >()(_id, arg0._id), + _lib, + retain: false, + release: true, + ); } void _ObjCBlock_ffiVoid_NSData_NSError_fnPtrTrampoline( @@ -58181,10 +58244,11 @@ void _ObjCBlock_ffiVoid_NSData_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_NSData_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_NSData_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_NSData_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSData_NSError._( @@ -58214,12 +58278,13 @@ class ObjCBlock_ffiVoid_NSData_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSData_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -58238,12 +58303,13 @@ class ObjCBlock_ffiVoid_NSData_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSData_NSError_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSData_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -58273,14 +58339,17 @@ class ObjCBlock_ffiVoid_NSData_NSError extends _ObjCBlockBase { void Function(NSData?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSData_NSError_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSData_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSData_NSError_registerClosure( @@ -58338,9 +58407,9 @@ _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_fnPtrTrampoline( ffi.Pointer Function(ffi.Pointer<_ObjCBlock> arg0) > >() - .asFunction Function(ffi.Pointer<_ObjCBlock>)>()( - arg0, -); + .asFunction< + ffi.Pointer Function(ffi.Pointer<_ObjCBlock>) + >()(arg0); final _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureRegistry = Function(ffi.Pointer<_ObjCBlock>)>{}; int _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureRegistryIndex = 0; @@ -58358,10 +58427,11 @@ ffi.Pointer _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer<_ObjCBlock> arg0, -) => _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureRegistry[block - .ref - .target - .address]!(arg0); +) => + _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureRegistry[block + .ref + .target + .address]!(arg0); class ObjCBlock_NSProgress_ffiVoidNSURLboolNSError extends _ObjCBlockBase { ObjCBlock_NSProgress_ffiVoidNSURLboolNSError._( @@ -58388,13 +58458,12 @@ class ObjCBlock_NSProgress_ffiVoidNSURLboolNSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >( - _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_fnPtrTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >(_ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -58413,13 +58482,12 @@ class ObjCBlock_NSProgress_ffiVoidNSURLboolNSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >( - _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >(_ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_closureTrampoline) + .cast(), _ObjCBlock_NSProgress_ffiVoidNSURLboolNSError_registerClosure( (ffi.Pointer<_ObjCBlock> arg0) => fn( @@ -58439,43 +58507,43 @@ class ObjCBlock_NSProgress_ffiVoidNSURLboolNSError extends _ObjCBlockBase { NSProgress? call(ObjCBlock_ffiVoid_NSURL_bool_NSError arg0) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer<_ObjCBlock> arg0, - ) - > - >() - .asFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >()(_id, arg0._id) - .address == - 0 - ? null - : NSProgress._( - _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer<_ObjCBlock> arg0, - ) - > - >() - .asFunction< + .cast< + ffi.NativeFunction< ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer<_ObjCBlock> arg0, ) - >()(_id, arg0._id), - _lib, - retain: false, - release: true, - ); + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >()(_id, arg0._id) + .address == + 0 + ? null + : NSProgress._( + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer<_ObjCBlock> arg0, + ) + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >()(_id, arg0._id), + _lib, + retain: false, + release: true, + ); } void _ObjCBlock_ffiVoid_NSURL_bool_NSError_fnPtrTrampoline( @@ -58515,10 +58583,11 @@ void _ObjCBlock_ffiVoid_NSURL_bool_NSError_closureTrampoline( ffi.Pointer arg0, bool arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSURL_bool_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSURL_bool_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSURL_bool_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSURL_bool_NSError._( @@ -58549,13 +58618,14 @@ class ObjCBlock_ffiVoid_NSURL_bool_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSURL_bool_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURL_bool_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -58574,13 +58644,14 @@ class ObjCBlock_ffiVoid_NSURL_bool_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSURL_bool_NSError_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURL_bool_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSURL_bool_NSError_registerClosure( ( ffi.Pointer arg0, @@ -58615,16 +58686,18 @@ class ObjCBlock_ffiVoid_NSURL_bool_NSError extends _ObjCBlockBase { void Function(NSURL?, bool, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSURL_bool_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSURL_bool_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSURL_bool_NSError_registerClosure( @@ -58707,10 +58780,11 @@ void _ObjCBlock_ffiVoid_NSURL_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_NSURL_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_NSURL_NSError_closureRegistry[block.ref.target.address]!( + arg0, + arg1, + ); class ObjCBlock_ffiVoid_NSURL_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSURL_NSError._( @@ -58740,12 +58814,13 @@ class ObjCBlock_ffiVoid_NSURL_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSURL_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURL_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -58764,12 +58839,13 @@ class ObjCBlock_ffiVoid_NSURL_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSURL_NSError_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURL_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSURL_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -58799,14 +58875,17 @@ class ObjCBlock_ffiVoid_NSURL_NSError extends _ObjCBlockBase { void Function(NSURL?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSURL_NSError_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSURL_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSURL_NSError_registerClosure( @@ -58860,9 +58939,9 @@ _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_fnPtrTrampoline( ffi.Pointer Function(ffi.Pointer<_ObjCBlock> arg0) > >() - .asFunction Function(ffi.Pointer<_ObjCBlock>)>()( - arg0, -); + .asFunction< + ffi.Pointer Function(ffi.Pointer<_ObjCBlock>) + >()(arg0); final _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureRegistry = Function(ffi.Pointer<_ObjCBlock>)>{}; int _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureRegistryIndex = 0; @@ -58880,10 +58959,11 @@ ffi.Pointer _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer<_ObjCBlock> arg0, -) => _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureRegistry[block - .ref - .target - .address]!(arg0); +) => + _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureRegistry[block + .ref + .target + .address]!(arg0); class ObjCBlock_NSProgress_ffiVoidObjCObjectNSError extends _ObjCBlockBase { ObjCBlock_NSProgress_ffiVoidObjCObjectNSError._( @@ -58910,13 +58990,12 @@ class ObjCBlock_NSProgress_ffiVoidObjCObjectNSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >( - _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_fnPtrTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >(_ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -58935,13 +59014,12 @@ class ObjCBlock_NSProgress_ffiVoidObjCObjectNSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >( - _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureTrampoline, - ).cast(), + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >(_ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_closureTrampoline) + .cast(), _ObjCBlock_NSProgress_ffiVoidObjCObjectNSError_registerClosure( (ffi.Pointer<_ObjCBlock> arg0) => fn( @@ -58961,43 +59039,43 @@ class ObjCBlock_NSProgress_ffiVoidObjCObjectNSError extends _ObjCBlockBase { NSProgress? call(ObjCBlock_ffiVoid_ObjCObject_NSError arg0) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer<_ObjCBlock> arg0, - ) - > - >() - .asFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ) - >()(_id, arg0._id) - .address == - 0 - ? null - : NSProgress._( - _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Pointer Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer<_ObjCBlock> arg0, - ) - > - >() - .asFunction< + .cast< + ffi.NativeFunction< ffi.Pointer Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer<_ObjCBlock> arg0, ) - >()(_id, arg0._id), - _lib, - retain: false, - release: true, - ); + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >()(_id, arg0._id) + .address == + 0 + ? null + : NSProgress._( + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer<_ObjCBlock> arg0, + ) + > + >() + .asFunction< + ffi.Pointer Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ) + >()(_id, arg0._id), + _lib, + retain: false, + release: true, + ); } void _ObjCBlock_ffiVoid_ObjCObject_NSError_fnPtrTrampoline( @@ -59031,10 +59109,11 @@ void _ObjCBlock_ffiVoid_ObjCObject_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_ObjCObject_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_ObjCObject_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_ObjCObject_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_ObjCObject_NSError._( @@ -59064,12 +59143,13 @@ class ObjCBlock_ffiVoid_ObjCObject_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ObjCObject_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -59088,12 +59168,13 @@ class ObjCBlock_ffiVoid_ObjCObject_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ObjCObject_NSError_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ObjCObject_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -59123,15 +59204,17 @@ class ObjCBlock_ffiVoid_ObjCObject_NSError extends _ObjCBlockBase { void Function(NSObject?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ObjCObject_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ObjCObject_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ObjCObject_NSError_registerClosure( @@ -59268,15 +59351,16 @@ class ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_fnPtrTrampoline, + ) + .cast(), ptr.cast(), ), lib, @@ -59296,15 +59380,16 @@ class ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_closureTrampoline, + ) + .cast(), _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_registerClosure( ( ffi.Pointer<_ObjCBlock> arg0, @@ -59341,16 +59426,18 @@ class ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ffiVoidObjCObjectNSError_ObjCObject_NSDictionary_registerClosure( @@ -59438,10 +59525,11 @@ void _ObjCBlock_ffiVoid_ObjCObject_NSError1_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_ObjCObject_NSError1_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_ObjCObject_NSError1_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_ObjCObject_NSError1 extends _ObjCBlockBase { ObjCBlock_ffiVoid_ObjCObject_NSError1._( @@ -59471,12 +59559,13 @@ class ObjCBlock_ffiVoid_ObjCObject_NSError1 extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_ObjCObject_NSError1_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_NSError1_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -59495,14 +59584,13 @@ class ObjCBlock_ffiVoid_ObjCObject_NSError1 extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_NSError1_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_NSError1_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ObjCObject_NSError1_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -59530,15 +59618,17 @@ class ObjCBlock_ffiVoid_ObjCObject_NSError1 extends _ObjCBlockBase { void Function(NSObject?, NSError) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ObjCObject_NSError1_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ObjCObject_NSError1_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ObjCObject_NSError1_registerClosure( @@ -61354,15 +61444,15 @@ class NSBundle extends NSObject { double preservationPriorityForTag_(NSString tag) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_254_fpret( - _id, - _lib._sel_preservationPriorityForTag_1, - tag._id, - ) + _id, + _lib._sel_preservationPriorityForTag_1, + tag._id, + ) : _lib._objc_msgSend_254( - _id, - _lib._sel_preservationPriorityForTag_1, - tag._id, - ); + _id, + _lib._sel_preservationPriorityForTag_1, + tag._id, + ); } @override @@ -62048,10 +62138,11 @@ void _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureTrampoline( ffi.Pointer arg0, _NSRange arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSDictionary_NSRange_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSDictionary_NSRange_bool._( @@ -62082,15 +62173,14 @@ class ObjCBlock_ffiVoid_NSDictionary_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -62109,15 +62199,14 @@ class ObjCBlock_ffiVoid_NSDictionary_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_registerClosure( ( ffi.Pointer arg0, @@ -62148,16 +62237,18 @@ class ObjCBlock_ffiVoid_NSDictionary_NSRange_bool extends _ObjCBlockBase { void Function(NSDictionary, _NSRange, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSDictionary_NSRange_bool_registerClosure( @@ -62245,10 +62336,11 @@ void _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureTrampoline( ffi.Pointer arg0, _NSRange arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_ObjCObject_NSRange_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_ObjCObject_NSRange_bool._( @@ -62279,15 +62371,14 @@ class ObjCBlock_ffiVoid_ObjCObject_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -62306,15 +62397,14 @@ class ObjCBlock_ffiVoid_ObjCObject_NSRange_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_registerClosure( ( ffi.Pointer arg0, @@ -62347,16 +62437,18 @@ class ObjCBlock_ffiVoid_ObjCObject_NSRange_bool extends _ObjCBlockBase { void Function(NSObject?, _NSRange, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - _NSRange, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + _NSRange, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_ObjCObject_NSRange_bool_registerClosure( @@ -64225,15 +64317,15 @@ class NSTimeZone extends NSObject { double daylightSavingTimeOffsetForDate_(NSDate aDate) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_159_fpret( - _id, - _lib._sel_daylightSavingTimeOffsetForDate_1, - aDate._id, - ) + _id, + _lib._sel_daylightSavingTimeOffsetForDate_1, + aDate._id, + ) : _lib._objc_msgSend_159( - _id, - _lib._sel_daylightSavingTimeOffsetForDate_1, - aDate._id, - ); + _id, + _lib._sel_daylightSavingTimeOffsetForDate_1, + aDate._id, + ); } NSDate? nextDaylightSavingTimeTransitionAfterDate_(NSDate aDate) { @@ -64841,31 +64933,31 @@ class NSCalendar extends NSObject { void minimumRangeOfUnit_(ffi.Pointer<_NSRange> stret, int unit) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_626_stret( - stret, - _id, - _lib._sel_minimumRangeOfUnit_1, - unit, - ) + stret, + _id, + _lib._sel_minimumRangeOfUnit_1, + unit, + ) : stret.ref = _lib._objc_msgSend_626( - _id, - _lib._sel_minimumRangeOfUnit_1, - unit, - ); + _id, + _lib._sel_minimumRangeOfUnit_1, + unit, + ); } void maximumRangeOfUnit_(ffi.Pointer<_NSRange> stret, int unit) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_626_stret( - stret, - _id, - _lib._sel_maximumRangeOfUnit_1, - unit, - ) + stret, + _id, + _lib._sel_maximumRangeOfUnit_1, + unit, + ) : stret.ref = _lib._objc_msgSend_626( - _id, - _lib._sel_maximumRangeOfUnit_1, - unit, - ); + _id, + _lib._sel_maximumRangeOfUnit_1, + unit, + ); } void rangeOfUnit_inUnit_forDate_( @@ -64876,20 +64968,20 @@ class NSCalendar extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_627_stret( - stret, - _id, - _lib._sel_rangeOfUnit_inUnit_forDate_1, - smaller, - larger, - date._id, - ) + stret, + _id, + _lib._sel_rangeOfUnit_inUnit_forDate_1, + smaller, + larger, + date._id, + ) : stret.ref = _lib._objc_msgSend_627( - _id, - _lib._sel_rangeOfUnit_inUnit_forDate_1, - smaller, - larger, - date._id, - ); + _id, + _lib._sel_rangeOfUnit_inUnit_forDate_1, + smaller, + larger, + date._id, + ); } int ordinalityOfUnit_inUnit_forDate_(int smaller, int larger, NSDate date) { @@ -65904,10 +65996,11 @@ void _ObjCBlock_ffiVoid_NSDate_bool_bool_closureTrampoline( ffi.Pointer arg0, bool arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSDate_bool_bool_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSDate_bool_bool_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSDate_bool_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSDate_bool_bool._( @@ -65938,13 +66031,14 @@ class ObjCBlock_ffiVoid_NSDate_bool_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSDate_bool_bool_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDate_bool_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -65963,13 +66057,14 @@ class ObjCBlock_ffiVoid_NSDate_bool_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSDate_bool_bool_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDate_bool_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSDate_bool_bool_registerClosure( ( ffi.Pointer arg0, @@ -66002,16 +66097,18 @@ class ObjCBlock_ffiVoid_NSDate_bool_bool extends _ObjCBlockBase { void Function(NSDate?, bool, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSDate_bool_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSDate_bool_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSDate_bool_bool_registerClosure( @@ -68665,11 +68762,12 @@ class ObjCBlock_ffiVoid_NSTimer extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSTimer_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSTimer_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -68688,11 +68786,12 @@ class ObjCBlock_ffiVoid_NSTimer extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSTimer_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSTimer_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSTimer_registerClosure( (ffi.Pointer arg0) => fn(NSTimer._(arg0, lib, retain: true, release: true)), @@ -68716,13 +68815,14 @@ class ObjCBlock_ffiVoid_NSTimer extends _ObjCBlockBase { void Function(NSTimer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSTimer_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener(_ObjCBlock_ffiVoid_NSTimer_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSTimer_registerClosure( @@ -69382,11 +69482,11 @@ class NSFileHandle extends NSObject { return _ret.address == 0 ? null : ObjCBlock_ffiVoid_NSFileHandle._( - _ret, - _lib, - retain: true, - release: true, - ); + _ret, + _lib, + retain: true, + release: true, + ); } set readabilityHandler(ObjCBlock_ffiVoid_NSFileHandle? value) { @@ -69402,11 +69502,11 @@ class NSFileHandle extends NSObject { return _ret.address == 0 ? null : ObjCBlock_ffiVoid_NSFileHandle._( - _ret, - _lib, - retain: true, - release: true, - ); + _ret, + _lib, + retain: true, + release: true, + ); } set writeabilityHandler(ObjCBlock_ffiVoid_NSFileHandle? value) { @@ -69646,11 +69746,12 @@ class ObjCBlock_ffiVoid_NSFileHandle extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSFileHandle_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSFileHandle_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -69669,11 +69770,12 @@ class ObjCBlock_ffiVoid_NSFileHandle extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSFileHandle_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSFileHandle_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSFileHandle_registerClosure( (ffi.Pointer arg0) => fn(NSFileHandle._(arg0, lib, retain: true, release: true)), @@ -69697,13 +69799,16 @@ class ObjCBlock_ffiVoid_NSFileHandle extends _ObjCBlockBase { void Function(NSFileHandle) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSFileHandle_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSFileHandle_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSFileHandle_registerClosure( @@ -72817,11 +72922,12 @@ class ObjCBlock_ffiVoid_NSArray extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -72840,11 +72946,12 @@ class ObjCBlock_ffiVoid_NSArray extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSArray_registerClosure( (ffi.Pointer arg0) => fn( arg0.address == 0 @@ -72871,13 +72978,14 @@ class ObjCBlock_ffiVoid_NSArray extends _ObjCBlockBase { void Function(NSArray?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSArray_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener(_ObjCBlock_ffiVoid_NSArray_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSArray_registerClosure( @@ -75305,14 +75413,14 @@ class NSProcessInfo extends NSObject { void getOperatingSystemVersion(ffi.Pointer stret) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_819_stret( - stret, - _id, - _lib._sel_operatingSystemVersion1, - ) + stret, + _id, + _lib._sel_operatingSystemVersion1, + ) : stret.ref = _lib._objc_msgSend_819( - _id, - _lib._sel_operatingSystemVersion1, - ); + _id, + _lib._sel_operatingSystemVersion1, + ); } int get processorCount { @@ -75639,8 +75747,9 @@ class ObjCBlock_ffiVoid_bool extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function(ffi.Pointer<_ObjCBlock>, ffi.Bool) - >(_ObjCBlock_ffiVoid_bool_fnPtrTrampoline).cast(), + ffi.Void Function(ffi.Pointer<_ObjCBlock>, ffi.Bool) + >(_ObjCBlock_ffiVoid_bool_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -75659,8 +75768,9 @@ class ObjCBlock_ffiVoid_bool extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function(ffi.Pointer<_ObjCBlock>, ffi.Bool) - >(_ObjCBlock_ffiVoid_bool_closureTrampoline).cast(), + ffi.Void Function(ffi.Pointer<_ObjCBlock>, ffi.Bool) + >(_ObjCBlock_ffiVoid_bool_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_bool_registerClosure((bool arg0) => fn(arg0)), ), lib, @@ -75679,10 +75789,11 @@ class ObjCBlock_ffiVoid_bool extends _ObjCBlockBase { ObjCBlock_ffiVoid_bool.listener(PedometerBindings lib, void Function(bool) fn) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function(ffi.Pointer<_ObjCBlock>, ffi.Bool) - >.listener(_ObjCBlock_ffiVoid_bool_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function(ffi.Pointer<_ObjCBlock>, ffi.Bool) + >.listener(_ObjCBlock_ffiVoid_bool_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_bool_registerClosure((bool arg0) => fn(arg0)), @@ -75840,31 +75951,31 @@ class NSTextCheckingResult extends NSObject { void rangeAtIndex_(ffi.Pointer<_NSRange> stret, int idx) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_302_stret( - stret, - _id, - _lib._sel_rangeAtIndex_1, - idx, - ) + stret, + _id, + _lib._sel_rangeAtIndex_1, + idx, + ) : stret.ref = _lib._objc_msgSend_302( - _id, - _lib._sel_rangeAtIndex_1, - idx, - ); + _id, + _lib._sel_rangeAtIndex_1, + idx, + ); } void rangeWithName_(ffi.Pointer<_NSRange> stret, NSString name) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_277_stret( - stret, - _id, - _lib._sel_rangeWithName_1, - name._id, - ) + stret, + _id, + _lib._sel_rangeWithName_1, + name._id, + ) : stret.ref = _lib._objc_msgSend_277( - _id, - _lib._sel_rangeWithName_1, - name._id, - ); + _id, + _lib._sel_rangeWithName_1, + name._id, + ); } NSTextCheckingResult resultByAdjustingRangesWithOffset_(int offset) { @@ -76415,20 +76526,20 @@ class NSRegularExpression extends NSObject { ) { _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_834_stret( - stret, - _id, - _lib._sel_rangeOfFirstMatchInString_options_range_1, - string._id, - options, - range, - ) + stret, + _id, + _lib._sel_rangeOfFirstMatchInString_options_range_1, + string._id, + options, + range, + ) : stret.ref = _lib._objc_msgSend_834( - _id, - _lib._sel_rangeOfFirstMatchInString_options_range_1, - string._id, - options, - range, - ); + _id, + _lib._sel_rangeOfFirstMatchInString_options_range_1, + string._id, + options, + range, + ); } NSString stringByReplacingMatchesInString_options_range_withTemplate_( @@ -76715,15 +76826,16 @@ class ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_fnPtrTrampoline, + ) + .cast(), ptr.cast(), ), lib, @@ -76742,15 +76854,16 @@ class ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_closureTrampoline, + ) + .cast(), _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_registerClosure( ( ffi.Pointer arg0, @@ -76760,11 +76873,11 @@ class ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool arg0.address == 0 ? null : NSTextCheckingResult._( - arg0, - lib, - retain: true, - release: true, - ), + arg0, + lib, + retain: true, + release: true, + ), arg1, arg2, ), @@ -76788,16 +76901,18 @@ class ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool void Function(NSTextCheckingResult?, int, ffi.Pointer) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Int32, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Int32, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool_registerClosure( @@ -76809,11 +76924,11 @@ class ObjCBlock_ffiVoid_NSTextCheckingResult_NSMatchingFlags_bool arg0.address == 0 ? null : NSTextCheckingResult._( - arg0, - lib, - retain: true, - release: true, - ), + arg0, + lib, + retain: true, + release: true, + ), arg1, arg2, ), @@ -77748,10 +77863,11 @@ ffi.Pointer _ObjCBlock_ffiVoid_NSCachedURLResponse_registerClosure( void _ObjCBlock_ffiVoid_NSCachedURLResponse_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, -) => _ObjCBlock_ffiVoid_NSCachedURLResponse_closureRegistry[block - .ref - .target - .address]!(arg0); +) => + _ObjCBlock_ffiVoid_NSCachedURLResponse_closureRegistry[block + .ref + .target + .address]!(arg0); class ObjCBlock_ffiVoid_NSCachedURLResponse extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSCachedURLResponse._( @@ -77776,11 +77892,12 @@ class ObjCBlock_ffiVoid_NSCachedURLResponse extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSCachedURLResponse_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSCachedURLResponse_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -77799,23 +77916,22 @@ class ObjCBlock_ffiVoid_NSCachedURLResponse extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSCachedURLResponse_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSCachedURLResponse_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSCachedURLResponse_registerClosure( (ffi.Pointer arg0) => fn( arg0.address == 0 ? null : NSCachedURLResponse._( - arg0, - lib, - retain: true, - release: true, - ), + arg0, + lib, + retain: true, + release: true, + ), ), ), ), @@ -77837,14 +77953,16 @@ class ObjCBlock_ffiVoid_NSCachedURLResponse extends _ObjCBlockBase { void Function(NSCachedURLResponse?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSCachedURLResponse_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSCachedURLResponse_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSCachedURLResponse_registerClosure( @@ -77852,11 +77970,11 @@ class ObjCBlock_ffiVoid_NSCachedURLResponse extends _ObjCBlockBase { arg0.address == 0 ? null : NSCachedURLResponse._( - arg0, - lib, - retain: true, - release: true, - ), + arg0, + lib, + retain: true, + release: true, + ), ), ), ), @@ -78397,10 +78515,11 @@ void _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureTrampoline( ffi.Pointer arg0, ffi.Pointer arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError._( @@ -78431,15 +78550,14 @@ class ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -78458,15 +78576,14 @@ class ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_registerClosure( ( ffi.Pointer arg0, @@ -78503,16 +78620,18 @@ class ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError extends _ObjCBlockBase { void Function(NSURLResponse?, NSData?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError_registerClosure( @@ -78545,30 +78664,31 @@ class ObjCBlock_ffiVoid_NSURLResponse_NSData_NSError extends _ObjCBlockBase { >? _dartFuncListenerTrampoline; - void call(NSURLResponse? arg0, NSData? arg1, NSError? arg2) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ffi.Pointer arg1, - ffi.Pointer arg2, - ) - > - >() - .asFunction< - void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >()( - _id, - arg0?._id ?? ffi.nullptr, - arg1?._id ?? ffi.nullptr, - arg2?._id ?? ffi.nullptr, - ); + void call(NSURLResponse? arg0, NSData? arg1, NSError? arg2) => + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, + ffi.Pointer arg1, + ffi.Pointer arg2, + ) + > + >() + .asFunction< + void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >()( + _id, + arg0?._id ?? ffi.nullptr, + arg1?._id ?? ffi.nullptr, + arg2?._id ?? ffi.nullptr, + ); } /// ! @@ -79677,11 +79797,12 @@ class ObjCBlock_ffiVoid_NSDictionary extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSDictionary_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDictionary_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -79700,11 +79821,12 @@ class ObjCBlock_ffiVoid_NSDictionary extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSDictionary_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSDictionary_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSDictionary_registerClosure( (ffi.Pointer arg0) => fn( arg0.address == 0 @@ -79731,13 +79853,16 @@ class ObjCBlock_ffiVoid_NSDictionary extends _ObjCBlockBase { void Function(NSDictionary?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSDictionary_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSDictionary_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSDictionary_registerClosure( @@ -79789,10 +79914,11 @@ ffi.Pointer _ObjCBlock_ffiVoid_NSURLCredential_registerClosure( void _ObjCBlock_ffiVoid_NSURLCredential_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, -) => _ObjCBlock_ffiVoid_NSURLCredential_closureRegistry[block - .ref - .target - .address]!(arg0); +) => + _ObjCBlock_ffiVoid_NSURLCredential_closureRegistry[block + .ref + .target + .address]!(arg0); class ObjCBlock_ffiVoid_NSURLCredential extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSURLCredential._( @@ -79817,11 +79943,12 @@ class ObjCBlock_ffiVoid_NSURLCredential extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSURLCredential_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURLCredential_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -79840,11 +79967,12 @@ class ObjCBlock_ffiVoid_NSURLCredential extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSURLCredential_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURLCredential_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSURLCredential_registerClosure( (ffi.Pointer arg0) => fn( arg0.address == 0 @@ -79871,13 +79999,16 @@ class ObjCBlock_ffiVoid_NSURLCredential extends _ObjCBlockBase { void Function(NSURLCredential?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSURLCredential_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSURLCredential_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSURLCredential_registerClosure( @@ -82545,9 +82676,9 @@ class NSURLSessionConfiguration extends NSObject { double get timeoutIntervalForRequest { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_157_fpret( - _id, - _lib._sel_timeoutIntervalForRequest1, - ) + _id, + _lib._sel_timeoutIntervalForRequest1, + ) : _lib._objc_msgSend_157(_id, _lib._sel_timeoutIntervalForRequest1); } @@ -82562,9 +82693,9 @@ class NSURLSessionConfiguration extends NSObject { double get timeoutIntervalForResource { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_157_fpret( - _id, - _lib._sel_timeoutIntervalForResource1, - ) + _id, + _lib._sel_timeoutIntervalForResource1, + ) : _lib._objc_msgSend_157(_id, _lib._sel_timeoutIntervalForResource1); } @@ -83185,10 +83316,11 @@ void _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureTrampoline( ffi.Pointer arg0, ffi.Pointer arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSArray_NSArray_NSArray extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSArray_NSArray_NSArray._( @@ -83219,15 +83351,14 @@ class ObjCBlock_ffiVoid_NSArray_NSArray_NSArray extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -83246,15 +83377,14 @@ class ObjCBlock_ffiVoid_NSArray_NSArray_NSArray extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_registerClosure( ( ffi.Pointer arg0, @@ -83285,16 +83415,18 @@ class ObjCBlock_ffiVoid_NSArray_NSArray_NSArray extends _ObjCBlockBase { void Function(NSArray, NSArray, NSArray) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSArray_NSArray_NSArray_registerClosure( @@ -83389,11 +83521,12 @@ class ObjCBlock_ffiVoid_NSArray1 extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray1_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray1_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -83412,11 +83545,12 @@ class ObjCBlock_ffiVoid_NSArray1 extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray1_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray1_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSArray1_registerClosure( (ffi.Pointer arg0) => fn(NSArray._(arg0, lib, retain: true, release: true)), @@ -83440,13 +83574,14 @@ class ObjCBlock_ffiVoid_NSArray1 extends _ObjCBlockBase { void Function(NSArray) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSArray1_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener(_ObjCBlock_ffiVoid_NSArray1_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSArray1_registerClosure( @@ -83705,11 +83840,12 @@ class ObjCBlock_ffiVoid_NSData extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSData_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -83728,11 +83864,12 @@ class ObjCBlock_ffiVoid_NSData extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSData_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSData_registerClosure( (ffi.Pointer arg0) => fn( arg0.address == 0 @@ -83759,13 +83896,14 @@ class ObjCBlock_ffiVoid_NSData extends _ObjCBlockBase { void Function(NSData?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSData_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ) + >.listener(_ObjCBlock_ffiVoid_NSData_closureTrampoline) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSData_registerClosure( @@ -84232,10 +84370,11 @@ void _ObjCBlock_ffiVoid_NSData_bool_NSError_closureTrampoline( ffi.Pointer arg0, bool arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSData_bool_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSData_bool_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSData_bool_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSData_bool_NSError._( @@ -84266,13 +84405,14 @@ class ObjCBlock_ffiVoid_NSData_bool_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSData_bool_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_bool_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -84291,15 +84431,14 @@ class ObjCBlock_ffiVoid_NSData_bool_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSData_bool_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_bool_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSData_bool_NSError_registerClosure( ( ffi.Pointer arg0, @@ -84332,16 +84471,18 @@ class ObjCBlock_ffiVoid_NSData_bool_NSError extends _ObjCBlockBase { void Function(NSData, bool, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Bool, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSData_bool_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Bool, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSData_bool_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSData_bool_NSError_registerClosure( @@ -85305,14 +85446,15 @@ class ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_fnPtrTrampoline, + ) + .cast(), ptr.cast(), ), lib, @@ -85331,24 +85473,25 @@ class ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >( + _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_closureTrampoline, + ) + .cast(), _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 ? null : NSURLSessionWebSocketMessage._( - arg0, - lib, - retain: true, - release: true, - ), + arg0, + lib, + retain: true, + release: true, + ), arg1.address == 0 ? null : NSError._(arg1, lib, retain: true, release: true), @@ -85373,15 +85516,17 @@ class ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError void Function(NSURLSessionWebSocketMessage?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError_registerClosure( @@ -85389,11 +85534,11 @@ class ObjCBlock_ffiVoid_NSURLSessionWebSocketMessage_NSError arg0.address == 0 ? null : NSURLSessionWebSocketMessage._( - arg0, - lib, - retain: true, - release: true, - ), + arg0, + lib, + retain: true, + release: true, + ), arg1.address == 0 ? null : NSError._(arg1, lib, retain: true, release: true), @@ -85499,10 +85644,11 @@ void _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureTrampoline( ffi.Pointer arg0, ffi.Pointer arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError._( @@ -85533,15 +85679,14 @@ class ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -85560,15 +85705,14 @@ class ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_registerClosure( ( ffi.Pointer arg0, @@ -85605,16 +85749,18 @@ class ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError extends _ObjCBlockBase { void Function(NSData?, NSURLResponse?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError_registerClosure( @@ -85647,30 +85793,31 @@ class ObjCBlock_ffiVoid_NSData_NSURLResponse_NSError extends _ObjCBlockBase { >? _dartFuncListenerTrampoline; - void call(NSData? arg0, NSURLResponse? arg1, NSError? arg2) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ffi.Pointer arg1, - ffi.Pointer arg2, - ) - > - >() - .asFunction< - void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >()( - _id, - arg0?._id ?? ffi.nullptr, - arg1?._id ?? ffi.nullptr, - arg2?._id ?? ffi.nullptr, - ); + void call(NSData? arg0, NSURLResponse? arg1, NSError? arg2) => + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, + ffi.Pointer arg1, + ffi.Pointer arg2, + ) + > + >() + .asFunction< + void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >()( + _id, + arg0?._id ?? ffi.nullptr, + arg1?._id ?? ffi.nullptr, + arg2?._id ?? ffi.nullptr, + ); } void _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_fnPtrTrampoline( @@ -85725,10 +85872,11 @@ void _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureTrampoline( ffi.Pointer arg0, ffi.Pointer arg1, ffi.Pointer arg2, -) => _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1, arg2); +) => + _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1, arg2); class ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError._( @@ -85759,15 +85907,14 @@ class ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -85786,15 +85933,14 @@ class ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_registerClosure( ( ffi.Pointer arg0, @@ -85831,16 +85977,18 @@ class ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError extends _ObjCBlockBase { void Function(NSURL?, NSURLResponse?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError_registerClosure( @@ -85873,30 +86021,31 @@ class ObjCBlock_ffiVoid_NSURL_NSURLResponse_NSError extends _ObjCBlockBase { >? _dartFuncListenerTrampoline; - void call(NSURL? arg0, NSURLResponse? arg1, NSError? arg2) => _id.ref.invoke - .cast< - ffi.NativeFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock> block, - ffi.Pointer arg0, - ffi.Pointer arg1, - ffi.Pointer arg2, - ) - > - >() - .asFunction< - void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ffi.Pointer, - ) - >()( - _id, - arg0?._id ?? ffi.nullptr, - arg1?._id ?? ffi.nullptr, - arg2?._id ?? ffi.nullptr, - ); + void call(NSURL? arg0, NSURLResponse? arg1, NSError? arg2) => + _id.ref.invoke + .cast< + ffi.NativeFunction< + ffi.Void Function( + ffi.Pointer<_ObjCBlock> block, + ffi.Pointer arg0, + ffi.Pointer arg1, + ffi.Pointer arg2, + ) + > + >() + .asFunction< + void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ffi.Pointer, + ) + >()( + _id, + arg0?._id ?? ffi.nullptr, + arg1?._id ?? ffi.nullptr, + arg2?._id ?? ffi.nullptr, + ); } class CMPedometer extends NSObject { @@ -86187,10 +86336,11 @@ void _ObjCBlock_ffiVoid_CMPedometerData_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_CMPedometerData_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_CMPedometerData_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_CMPedometerData_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_CMPedometerData_NSError._( @@ -86220,14 +86370,13 @@ class ObjCBlock_ffiVoid_CMPedometerData_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_CMPedometerData_NSError_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_CMPedometerData_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -86246,14 +86395,13 @@ class ObjCBlock_ffiVoid_CMPedometerData_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_CMPedometerData_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_CMPedometerData_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_CMPedometerData_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -86283,15 +86431,17 @@ class ObjCBlock_ffiVoid_CMPedometerData_NSError extends _ObjCBlockBase { void Function(CMPedometerData?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_CMPedometerData_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_CMPedometerData_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_CMPedometerData_NSError_registerClosure( @@ -86588,10 +86738,11 @@ void _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_CMPedometerEvent_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_CMPedometerEvent_NSError._( @@ -86621,14 +86772,13 @@ class ObjCBlock_ffiVoid_CMPedometerEvent_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_fnPtrTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_CMPedometerEvent_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -86647,14 +86797,13 @@ class ObjCBlock_ffiVoid_CMPedometerEvent_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >( - _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureTrampoline, - ).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -86684,15 +86833,17 @@ class ObjCBlock_ffiVoid_CMPedometerEvent_NSError extends _ObjCBlockBase { void Function(CMPedometerEvent?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_CMPedometerEvent_NSError_registerClosure( @@ -87154,13 +87305,13 @@ class CLLocationManager extends NSObject { double get maximumRegionMonitoringDistance { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_157_fpret( - _id, - _lib._sel_maximumRegionMonitoringDistance1, - ) + _id, + _lib._sel_maximumRegionMonitoringDistance1, + ) : _lib._objc_msgSend_157( - _id, - _lib._sel_maximumRegionMonitoringDistance1, - ); + _id, + _lib._sel_maximumRegionMonitoringDistance1, + ); } NSSet get monitoredRegions { @@ -87740,39 +87891,39 @@ class CLLocation extends NSObject { return _ret.address == 0 ? null : CLLocationSourceInformation._( - _ret, - _lib, - retain: true, - release: true, - ); + _ret, + _lib, + retain: true, + release: true, + ); } double getDistanceFrom_(CLLocation location) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_995_fpret( - _id, - _lib._sel_getDistanceFrom_1, - location._id, - ) + _id, + _lib._sel_getDistanceFrom_1, + location._id, + ) : _lib._objc_msgSend_995( - _id, - _lib._sel_getDistanceFrom_1, - location._id, - ); + _id, + _lib._sel_getDistanceFrom_1, + location._id, + ); } double distanceFromLocation_(CLLocation location) { return _lib._objc_msgSend_useVariants1 ? _lib._objc_msgSend_995_fpret( - _id, - _lib._sel_distanceFromLocation_1, - location._id, - ) + _id, + _lib._sel_distanceFromLocation_1, + location._id, + ) : _lib._objc_msgSend_995( - _id, - _lib._sel_distanceFromLocation_1, - location._id, - ); + _id, + _lib._sel_distanceFromLocation_1, + location._id, + ); } @override @@ -89884,10 +90035,11 @@ void _ObjCBlock_ffiVoid_NSArray_NSError_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_NSArray_NSError_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_NSArray_NSError_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_NSArray_NSError extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSArray_NSError._( @@ -89917,12 +90069,13 @@ class ObjCBlock_ffiVoid_NSArray_NSError extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray_NSError_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_NSError_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -89941,12 +90094,13 @@ class ObjCBlock_ffiVoid_NSArray_NSError extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray_NSError_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_NSError_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSArray_NSError_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( NSArray._(arg0, lib, retain: true, release: true), @@ -89974,14 +90128,17 @@ class ObjCBlock_ffiVoid_NSArray_NSError extends _ObjCBlockBase { void Function(NSArray, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener(_ObjCBlock_ffiVoid_NSArray_NSError_closureTrampoline) - ..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSArray_NSError_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSArray_NSError_registerClosure( @@ -90653,10 +90810,11 @@ void _ObjCBlock_ffiVoid_NSArray_NSError1_closureTrampoline( ffi.Pointer<_ObjCBlock> block, ffi.Pointer arg0, ffi.Pointer arg1, -) => _ObjCBlock_ffiVoid_NSArray_NSError1_closureRegistry[block - .ref - .target - .address]!(arg0, arg1); +) => + _ObjCBlock_ffiVoid_NSArray_NSError1_closureRegistry[block + .ref + .target + .address]!(arg0, arg1); class ObjCBlock_ffiVoid_NSArray_NSError1 extends _ObjCBlockBase { ObjCBlock_ffiVoid_NSArray_NSError1._( @@ -90686,12 +90844,13 @@ class ObjCBlock_ffiVoid_NSArray_NSError1 extends _ObjCBlockBase { lib._newBlock1( _cFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray_NSError1_fnPtrTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_NSError1_fnPtrTrampoline) + .cast(), ptr.cast(), ), lib, @@ -90710,12 +90869,13 @@ class ObjCBlock_ffiVoid_NSArray_NSError1 extends _ObjCBlockBase { lib._newBlock1( _dartFuncTrampoline ??= ffi.Pointer.fromFunction< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >(_ObjCBlock_ffiVoid_NSArray_NSError1_closureTrampoline).cast(), + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >(_ObjCBlock_ffiVoid_NSArray_NSError1_closureTrampoline) + .cast(), _ObjCBlock_ffiVoid_NSArray_NSError1_registerClosure( (ffi.Pointer arg0, ffi.Pointer arg1) => fn( arg0.address == 0 @@ -90745,15 +90905,17 @@ class ObjCBlock_ffiVoid_NSArray_NSError1 extends _ObjCBlockBase { void Function(NSArray?, NSError?) fn, ) : this._( lib._newBlock1( - (_dartFuncListenerTrampoline ??= ffi.NativeCallable< - ffi.Void Function( - ffi.Pointer<_ObjCBlock>, - ffi.Pointer, - ffi.Pointer, - ) - >.listener( - _ObjCBlock_ffiVoid_NSArray_NSError1_closureTrampoline, - )..keepIsolateAlive = false) + (_dartFuncListenerTrampoline ??= + ffi.NativeCallable< + ffi.Void Function( + ffi.Pointer<_ObjCBlock>, + ffi.Pointer, + ffi.Pointer, + ) + >.listener( + _ObjCBlock_ffiVoid_NSArray_NSError1_closureTrampoline, + ) + ..keepIsolateAlive = false) .nativeFunction .cast(), _ObjCBlock_ffiVoid_NSArray_NSError1_registerClosure( diff --git a/pedometer/pubspec.yaml b/pedometer/pubspec.yaml index b52c1341945..5dfa80d0f3c 100644 --- a/pedometer/pubspec.yaml +++ b/pedometer/pubspec.yaml @@ -2,23 +2,26 @@ name: pedometer description: A new Flutter FFI plugin project. version: 0.0.1 publish_to: none +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter plugin_platform_interface: ^2.1.8 - jni: ^0.13.0 + jni: ^0.14.2 ffi: ^2.1.2 dev_dependencies: - ffigen: ^16.0.0 - jnigen: ^0.13.1 + analysis_defaults: + path: ../analysis_defaults + ffigen: ^19.1.0 + jnigen: ^0.14.2 flutter_test: sdk: flutter - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/place_tracker/lib/place_details.dart b/place_tracker/lib/place_details.dart index 05ff1fbdfaf..56e5524f24a 100644 --- a/place_tracker/lib/place_details.dart +++ b/place_tracker/lib/place_details.dart @@ -240,10 +240,9 @@ class _Reviews extends StatelessWidget { ), ), Column( - children: - StubData.reviewStrings - .map((reviewText) => _buildSingleReview(reviewText)) - .toList(), + children: StubData.reviewStrings + .map((reviewText) => _buildSingleReview(reviewText)) + .toList(), ), ], ); @@ -308,17 +307,16 @@ class _StarBar extends StatelessWidget { Widget build(BuildContext context) { return Row( mainAxisAlignment: MainAxisAlignment.center, - children: - List.generate(maxStars, (index) { - return IconButton( - icon: const Icon(Icons.star), - iconSize: 40, - color: rating > index ? Colors.amber : Colors.grey[400], - onPressed: () { - onChanged(index + 1); - }, - ); - }).toList(), + children: List.generate(maxStars, (index) { + return IconButton( + icon: const Icon(Icons.star), + iconSize: 40, + color: rating > index ? Colors.amber : Colors.grey[400], + onPressed: () { + onChanged(index + 1); + }, + ); + }).toList(), ); } } diff --git a/place_tracker/lib/place_list.dart b/place_tracker/lib/place_list.dart index 46a9e29c954..d6e10d5797c 100644 --- a/place_tracker/lib/place_list.dart +++ b/place_tracker/lib/place_list.dart @@ -33,11 +33,10 @@ class _PlaceListState extends State { padding: const EdgeInsets.fromLTRB(16.0, 0.0, 16.0, 8.0), controller: _scrollController, shrinkWrap: true, - children: - state.places - .where((place) => place.category == state.selectedCategory) - .map((place) => _PlaceListTile(place: place)) - .toList(), + children: state.places + .where((place) => place.category == state.selectedCategory) + .map((place) => _PlaceListTile(place: place)) + .toList(), ), ), ], @@ -158,17 +157,15 @@ class _PlaceListTile extends StatelessWidget { maxLines: 3, ), Row( - children: - List.generate(5, (index) { - return Icon( - Icons.star, - size: 28.0, - color: - place.starRating > index - ? Colors.amber - : Colors.grey[400], - ); - }).toList(), + children: List.generate(5, (index) { + return Icon( + Icons.star, + size: 28.0, + color: place.starRating > index + ? Colors.amber + : Colors.grey[400], + ); + }).toList(), ), Text( place.description ?? '', diff --git a/place_tracker/lib/place_map.dart b/place_tracker/lib/place_map.dart index ffebe88fa35..10dac39e4e0 100644 --- a/place_tracker/lib/place_map.dart +++ b/place_tracker/lib/place_map.dart @@ -278,8 +278,9 @@ class _PlaceMapState extends State { // At this point, we know the places have been updated from the list // view. We need to reconfigure the map to respect the updates. for (final place in newConfiguration.places) { - final oldPlace = - _configuration!.places.where((p) => p.id == place.id).firstOrNull; + final oldPlace = _configuration!.places + .where((p) => p.id == place.id) + .firstOrNull; if (oldPlace == null || oldPlace != place) { // New place or updated place. _updateExistingPlaceMarker(place: place); @@ -355,8 +356,9 @@ class _PlaceMapState extends State { final updatedMarker = marker.copyWith( infoWindowParam: InfoWindow( title: place.name, - snippet: - place.starRating != 0 ? '${place.starRating} Star Rating' : null, + snippet: place.starRating != 0 + ? '${place.starRating} Star Rating' + : null, ), ); _updateMarker(marker: marker, updatedMarker: updatedMarker, place: place); @@ -502,8 +504,8 @@ class _CategoryButtonBar extends StatelessWidget { style: FilledButton.styleFrom( backgroundColor: selectedPlaceCategory == PlaceCategory.favorite - ? Colors.green[700] - : Colors.lightGreen, + ? Colors.green[700] + : Colors.lightGreen, ), onPressed: () => onChanged(PlaceCategory.favorite), child: const Text( @@ -515,8 +517,8 @@ class _CategoryButtonBar extends StatelessWidget { style: FilledButton.styleFrom( backgroundColor: selectedPlaceCategory == PlaceCategory.visited - ? Colors.green[700] - : Colors.lightGreen, + ? Colors.green[700] + : Colors.lightGreen, ), onPressed: () => onChanged(PlaceCategory.visited), child: const Text( @@ -528,8 +530,8 @@ class _CategoryButtonBar extends StatelessWidget { style: FilledButton.styleFrom( backgroundColor: selectedPlaceCategory == PlaceCategory.wantToGo - ? Colors.green[700] - : Colors.lightGreen, + ? Colors.green[700] + : Colors.lightGreen, ), onPressed: () => onChanged(PlaceCategory.wantToGo), child: const Text( diff --git a/place_tracker/pubspec.yaml b/place_tracker/pubspec.yaml index 6ed81c230f5..3bdda822fde 100644 --- a/place_tracker/pubspec.yaml +++ b/place_tracker/pubspec.yaml @@ -1,27 +1,25 @@ name: place_tracker description: A new Flutter project. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.0 google_maps_flutter: ^2.2.0 provider: ^6.0.2 uuid: ^4.0.0 - go_router: ">=10.0.0 <17.0.0" + go_router: ^16.0.0 dev_dependencies: analysis_defaults: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: assets: - assets/ diff --git a/platform_channels/lib/main.dart b/platform_channels/lib/main.dart index 29c69570dc2..53fb0be9e57 100644 --- a/platform_channels/lib/main.dart +++ b/platform_channels/lib/main.dart @@ -22,7 +22,9 @@ class PlatformChannelSample extends StatelessWidget { return MaterialApp.router( title: 'Platform Channel Sample', theme: ThemeData( - snackBarTheme: SnackBarThemeData(backgroundColor: Colors.blue[500]), + snackBarTheme: SnackBarThemeData( + backgroundColor: Colors.blue[500], + ), ), routerConfig: router(), ); diff --git a/platform_channels/lib/src/add_pet_details.dart b/platform_channels/lib/src/add_pet_details.dart index cc1950462ea..6da6ced6679 100644 --- a/platform_channels/lib/src/add_pet_details.dart +++ b/platform_channels/lib/src/add_pet_details.dart @@ -31,7 +31,10 @@ class _AddPetDetailsState extends State { icon: const Icon(Icons.add), onPressed: () { PetListMessageChannel.addPetDetails( - PetDetails(petType: petType, breed: breedTextController.text), + PetDetails( + petType: petType, + breed: breedTextController.text, + ), ); context.pop(); @@ -61,8 +64,14 @@ class _AddPetDetailsState extends State { ), ), const SizedBox(height: 8), - RadioListTile(title: const Text('Dog'), value: 'Dog'), - RadioListTile(title: const Text('Cat'), value: 'Cat'), + RadioListTile( + title: const Text('Dog'), + value: 'Dog', + ), + RadioListTile( + title: const Text('Cat'), + value: 'Cat', + ), ], ), ), diff --git a/platform_channels/lib/src/counter_method_channel.dart b/platform_channels/lib/src/counter_method_channel.dart index f6c6a2edd63..38b948a7dcb 100644 --- a/platform_channels/lib/src/counter_method_channel.dart +++ b/platform_channels/lib/src/counter_method_channel.dart @@ -11,7 +11,9 @@ class Counter { /// Creates a [MethodChannel] with the specified name to invoke platform method. /// In order to communicate across platforms, the name of MethodChannel /// should be same on native and dart side. - static MethodChannel methodChannel = const MethodChannel('methodChannelDemo'); + static MethodChannel methodChannel = const MethodChannel( + 'methodChannelDemo', + ); /// This method is responsible to increment and return the value of count. static Future increment({required int counterValue}) async { diff --git a/platform_channels/lib/src/image_basic_message_channel.dart b/platform_channels/lib/src/image_basic_message_channel.dart index 58c5724afcc..19d03a0f65b 100644 --- a/platform_channels/lib/src/image_basic_message_channel.dart +++ b/platform_channels/lib/src/image_basic_message_channel.dart @@ -15,7 +15,8 @@ class PlatformImageFetcher { /// Method responsible for providing the platform image. static Future getImage() async { - final reply = await _basicMessageChannel.send('getImage') as Uint8List?; + final reply = + await _basicMessageChannel.send('getImage') as Uint8List?; if (reply == null) { throw PlatformException( code: 'Error', diff --git a/platform_channels/lib/src/method_channel_demo.dart b/platform_channels/lib/src/method_channel_demo.dart index c12f323f664..e3ecf024b93 100644 --- a/platform_channels/lib/src/method_channel_demo.dart +++ b/platform_channels/lib/src/method_channel_demo.dart @@ -39,7 +39,9 @@ class _MethodChannelDemoState extends State { FilledButton.icon( onPressed: () async { try { - final value = await Counter.increment(counterValue: count); + final value = await Counter.increment( + counterValue: count, + ); setState(() => count = value); } catch (error) { if (!context.mounted) return; @@ -58,7 +60,9 @@ class _MethodChannelDemoState extends State { FilledButton.icon( onPressed: () async { try { - final value = await Counter.decrement(counterValue: count); + final value = await Counter.decrement( + counterValue: count, + ); setState(() => count = value); } catch (error) { if (!context.mounted) return; diff --git a/platform_channels/lib/src/pet_list_message_channel.dart b/platform_channels/lib/src/pet_list_message_channel.dart index defb6f6ea9e..d9ed6275801 100644 --- a/platform_channels/lib/src/pet_list_message_channel.dart +++ b/platform_channels/lib/src/pet_list_message_channel.dart @@ -34,7 +34,9 @@ class PetListMessageChannel { /// we will throw a [PlatformException]. static Future removePet(int index) async { final uInt8List = utf8.encoder.convert(index.toString()); - final reply = await _binaryCodecChannel.send(uInt8List.buffer.asByteData()); + final reply = await _binaryCodecChannel.send( + uInt8List.buffer.asByteData(), + ); if (reply == null) { throw PlatformException( code: 'INVALID INDEX', diff --git a/platform_channels/lib/src/pet_list_screen.dart b/platform_channels/lib/src/pet_list_screen.dart index 34dc810eb35..caf821b388c 100644 --- a/platform_channels/lib/src/pet_list_screen.dart +++ b/platform_channels/lib/src/pet_list_screen.dart @@ -56,10 +56,9 @@ class _PetListScreenState extends State { context.go('/petListScreen/addPetDetails'); }, ), - body: - petListModel.petList.isEmpty - ? const Center(child: Text('Enter Pet Details')) - : BuildPetList(petListModel.petList), + body: petListModel.petList.isEmpty + ? const Center(child: Text('Enter Pet Details')) + : BuildPetList(petListModel.petList), ); } } diff --git a/platform_channels/lib/src/platform_image_demo.dart b/platform_channels/lib/src/platform_image_demo.dart index 4a801781142..6e981cb1cce 100644 --- a/platform_channels/lib/src/platform_image_demo.dart +++ b/platform_channels/lib/src/platform_image_demo.dart @@ -45,7 +45,10 @@ class _PlatformImageDemoState extends State { ); } else if (snapshot.connectionState == ConnectionState.done) { - return Image.memory(snapshot.data!, fit: BoxFit.fill); + return Image.memory( + snapshot.data!, + fit: BoxFit.fill, + ); } return const CircularProgressIndicator(); }, @@ -54,14 +57,13 @@ class _PlatformImageDemoState extends State { ), const SizedBox(height: 16), FilledButton( - onPressed: - imageData != null - ? null - : () { - setState(() { - imageData = PlatformImageFetcher.getImage(); - }); - }, + onPressed: imageData != null + ? null + : () { + setState(() { + imageData = PlatformImageFetcher.getImage(); + }); + }, child: const Text('Get Image'), ), ], diff --git a/platform_channels/pubspec.yaml b/platform_channels/pubspec.yaml index 334b2c87068..7ebe27e07b1 100644 --- a/platform_channels/pubspec.yaml +++ b/platform_channels/pubspec.yaml @@ -1,24 +1,22 @@ name: platform_channels description: A new Flutter project. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.3 - go_router: ">=10.1.0 <17.0.0" + go_router: ^16.0.0 dev_dependencies: analysis_defaults: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true assets: diff --git a/platform_channels/test/src/add_pet_details_test.dart b/platform_channels/test/src/add_pet_details_test.dart index fc63ae140ef..dc0ba0351db 100644 --- a/platform_channels/test/src/add_pet_details_test.dart +++ b/platform_channels/test/src/add_pet_details_test.dart @@ -38,7 +38,10 @@ void main() { // Navigate back to /petListScreen await tester.pumpAndSettle(); - expect(router.routeInformationProvider.value.uri.path, '/petListScreen'); + expect( + router.routeInformationProvider.value.uri.path, + '/petListScreen', + ); }); }); } diff --git a/platform_channels/test/src/event_channel_demo_test.dart b/platform_channels/test/src/event_channel_demo_test.dart index 9ca672e403f..1b854f93e89 100644 --- a/platform_channels/test/src/event_channel_demo_test.dart +++ b/platform_channels/test/src/event_channel_demo_test.dart @@ -34,7 +34,9 @@ void main() { if (methodCall.method == 'listen') { // Emit new sensor values. - emitValues(standardMethod.encodeSuccessEnvelope(sensorValues)); + emitValues( + standardMethod.encodeSuccessEnvelope(sensorValues), + ); emitValues(null); return standardMethod.encodeSuccessEnvelope(null); } else if (methodCall.method == 'cancel') { diff --git a/platform_channels/test/src/method_channel_demo_test.dart b/platform_channels/test/src/method_channel_demo_test.dart index fad8f076547..5fea9a5fccb 100644 --- a/platform_channels/test/src/method_channel_demo_test.dart +++ b/platform_channels/test/src/method_channel_demo_test.dart @@ -23,7 +23,9 @@ void main() { return MissingPluginException(); }, ); - await tester.pumpWidget(const MaterialApp(home: MethodChannelDemo())); + await tester.pumpWidget( + const MaterialApp(home: MethodChannelDemo()), + ); // Initially the value of count should be 0. expect(find.text('Value of count is 0'), findsOneWidget); diff --git a/platform_channels/test/src/pet_list_screen_test.dart b/platform_channels/test/src/pet_list_screen_test.dart index c3011704328..2eb8a600089 100644 --- a/platform_channels/test/src/pet_list_screen_test.dart +++ b/platform_channels/test/src/pet_list_screen_test.dart @@ -26,7 +26,9 @@ void main() { setUpAll(() { // Mock for the pet list received from the platform. TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger - .setMockDecodedMessageHandler(basicMessageChannel, (message) async { + .setMockDecodedMessageHandler(basicMessageChannel, ( + message, + ) async { petListModel = PetListModel.fromJson(message!); return null; }); @@ -78,7 +80,9 @@ void main() { testWidgets('BuildPetList test', (tester) async { await tester.pumpWidget( - MaterialApp(home: Scaffold(body: BuildPetList(petListModel!.petList))), + MaterialApp( + home: Scaffold(body: BuildPetList(petListModel!.petList)), + ), ); expect(find.text('Pet type: Dog'), findsOneWidget); diff --git a/platform_channels/test/src/platform_image_demo_test.dart b/platform_channels/test/src/platform_image_demo_test.dart index 65c2bb21572..c46c9f26778 100644 --- a/platform_channels/test/src/platform_image_demo_test.dart +++ b/platform_channels/test/src/platform_image_demo_test.dart @@ -16,11 +16,15 @@ void main() { StandardMessageCodec(), ), (dynamic message) async { - var byteData = await rootBundle.load('assets/eat_new_orleans.jpg'); + var byteData = await rootBundle.load( + 'assets/eat_new_orleans.jpg', + ); return byteData.buffer.asUint8List(); }, ); - await tester.pumpWidget(const MaterialApp(home: PlatformImageDemo())); + await tester.pumpWidget( + const MaterialApp(home: PlatformImageDemo()), + ); // Initially a PlaceHolder is displayed when imageData is null. expect(find.byType(Placeholder), findsOneWidget); diff --git a/platform_design/lib/main.dart b/platform_design/lib/main.dart index 03e10489220..19efc282fef 100644 --- a/platform_design/lib/main.dart +++ b/platform_design/lib/main.dart @@ -56,7 +56,8 @@ class PlatformAdaptingHomePage extends StatefulWidget { _PlatformAdaptingHomePageState(); } -class _PlatformAdaptingHomePageState extends State { +class _PlatformAdaptingHomePageState + extends State { // This app keeps a global key for the songs tab because it owns a bunch of // data. Since changing platform re-parents those tabs into different // scaffolds, keeping a global key to it lets this app keep that tab's data as @@ -88,7 +89,10 @@ class _PlatformAdaptingHomePageState extends State { label: SongsTab.title, icon: SongsTab.iosIcon, ), - BottomNavigationBarItem(label: NewsTab.title, icon: NewsTab.iosIcon), + BottomNavigationBarItem( + label: NewsTab.title, + icon: NewsTab.iosIcon, + ), BottomNavigationBarItem( label: ProfileTab.title, icon: ProfileTab.iosIcon, @@ -168,7 +172,9 @@ class _AndroidDrawer extends StatelessWidget { Navigator.pop(context); Navigator.push( context, - MaterialPageRoute(builder: (context) => const ProfileTab()), + MaterialPageRoute( + builder: (context) => const ProfileTab(), + ), ); }, ), @@ -184,7 +190,9 @@ class _AndroidDrawer extends StatelessWidget { Navigator.pop(context); Navigator.push( context, - MaterialPageRoute(builder: (context) => const SettingsTab()), + MaterialPageRoute( + builder: (context) => const SettingsTab(), + ), ); }, ), diff --git a/platform_design/lib/news_tab.dart b/platform_design/lib/news_tab.dart index 26c3a698c00..90d0de82381 100644 --- a/platform_design/lib/news_tab.dart +++ b/platform_design/lib/news_tab.dart @@ -31,7 +31,10 @@ class _NewsTabState extends State { @override void initState() { colors = getRandomColors(_itemsLength); - titles = List.generate(_itemsLength, (index) => generateRandomHeadline()); + titles = List.generate( + _itemsLength, + (index) => generateRandomHeadline(), + ); contents = List.generate( _itemsLength, (index) => lorem(paragraphs: 1, words: 24), @@ -46,11 +49,15 @@ class _NewsTabState extends State { child: Card( elevation: 1.5, margin: const EdgeInsets.fromLTRB(6, 12, 6, 0), - shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(4)), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.circular(4), + ), child: InkWell( // Make it splash on Android. It would happen automatically if this // was a real card but this is just a demo. Skip the splash on iOS. - onTap: defaultTargetPlatform == TargetPlatform.iOS ? null : () {}, + onTap: defaultTargetPlatform == TargetPlatform.iOS + ? null + : () {}, child: Padding( padding: const EdgeInsets.all(12.0), child: Row( @@ -114,6 +121,9 @@ class _NewsTabState extends State { @override Widget build(context) { - return PlatformWidget(androidBuilder: _buildAndroid, iosBuilder: _buildIos); + return PlatformWidget( + androidBuilder: _buildAndroid, + iosBuilder: _buildIos, + ); } } diff --git a/platform_design/lib/profile_tab.dart b/platform_design/lib/profile_tab.dart index ddca7dbe190..6ce9bf57f22 100644 --- a/platform_design/lib/profile_tab.dart +++ b/platform_design/lib/profile_tab.dart @@ -99,7 +99,10 @@ class ProfileTab extends StatelessWidget { @override Widget build(context) { - return PlatformWidget(androidBuilder: _buildAndroid, iosBuilder: _buildIos); + return PlatformWidget( + androidBuilder: _buildAndroid, + iosBuilder: _buildIos, + ); } } @@ -243,6 +246,9 @@ class LogOutButton extends StatelessWidget { @override Widget build(context) { - return PlatformWidget(androidBuilder: _buildAndroid, iosBuilder: _buildIos); + return PlatformWidget( + androidBuilder: _buildAndroid, + iosBuilder: _buildIos, + ); } } diff --git a/platform_design/lib/settings_tab.dart b/platform_design/lib/settings_tab.dart index d9df9500480..43fa0d8c473 100644 --- a/platform_design/lib/settings_tab.dart +++ b/platform_design/lib/settings_tab.dart @@ -105,6 +105,9 @@ class _SettingsTabState extends State { @override Widget build(context) { - return PlatformWidget(androidBuilder: _buildAndroid, iosBuilder: _buildIos); + return PlatformWidget( + androidBuilder: _buildAndroid, + iosBuilder: _buildIos, + ); } } diff --git a/platform_design/lib/song_detail_tab.dart b/platform_design/lib/song_detail_tab.dart index a3d1827fa2b..2236c280758 100644 --- a/platform_design/lib/song_detail_tab.dart +++ b/platform_design/lib/song_detail_tab.dart @@ -42,38 +42,38 @@ class SongDetailTab extends StatelessWidget { // to build while the hero transition is mid-flight. // // It could either be specified here or in SongsTab. - flightShuttleBuilder: ( - context, - animation, - flightDirection, - fromHeroContext, - toHeroContext, - ) { - return HeroAnimatingSongCard( - song: song, - color: color, - heroAnimation: animation, - ); - }, + flightShuttleBuilder: + ( + context, + animation, + flightDirection, + fromHeroContext, + toHeroContext, + ) { + return HeroAnimatingSongCard( + song: song, + color: color, + heroAnimation: animation, + ); + }, ), const Divider(height: 0, color: Colors.grey), Expanded( child: ListView.builder( itemCount: 10, - itemBuilder: - (context, index) => switch (index) { - 0 => const Padding( - padding: EdgeInsets.only(left: 15, top: 16, bottom: 8), - child: Text( - 'You might also like:', - style: TextStyle( - fontSize: 16, - fontWeight: FontWeight.w500, - ), - ), + itemBuilder: (context, index) => switch (index) { + 0 => const Padding( + padding: EdgeInsets.only(left: 15, top: 16, bottom: 8), + child: Text( + 'You might also like:', + style: TextStyle( + fontSize: 16, + fontWeight: FontWeight.w500, ), - _ => const SongPlaceholderTile(), - }, + ), + ), + _ => const SongPlaceholderTile(), + }, ), ), ], @@ -86,7 +86,10 @@ class SongDetailTab extends StatelessWidget { // =========================================================================== Widget _buildAndroid(BuildContext context) { - return Scaffold(appBar: AppBar(title: Text(song)), body: _buildBody()); + return Scaffold( + appBar: AppBar(title: Text(song)), + body: _buildBody(), + ); } Widget _buildIos(BuildContext context) { @@ -101,6 +104,9 @@ class SongDetailTab extends StatelessWidget { @override Widget build(context) { - return PlatformWidget(androidBuilder: _buildAndroid, iosBuilder: _buildIos); + return PlatformWidget( + androidBuilder: _buildAndroid, + iosBuilder: _buildIos, + ); } } diff --git a/platform_design/lib/songs_tab.dart b/platform_design/lib/songs_tab.dart index 48d8d8f2afb..928b497ac5e 100644 --- a/platform_design/lib/songs_tab.dart +++ b/platform_design/lib/songs_tab.dart @@ -55,10 +55,9 @@ class _SongsTabState extends State { // Show a slightly different color palette. Show poppy-ier colors on iOS // due to lighter contrasting bars and tone it down on Android. - final color = - defaultTargetPlatform == TargetPlatform.iOS - ? colors[index] - : colors[index].shade400; + final color = defaultTargetPlatform == TargetPlatform.iOS + ? colors[index] + : colors[index].shade400; return SafeArea( top: false, @@ -69,17 +68,15 @@ class _SongsTabState extends State { song: songNames[index], color: color, heroAnimation: const AlwaysStoppedAnimation(0), - onPressed: - () => Navigator.of(context).push( - MaterialPageRoute( - builder: - (context) => SongDetailTab( - id: index, - song: songNames[index], - color: color, - ), - ), + onPressed: () => Navigator.of(context).push( + MaterialPageRoute( + builder: (context) => SongDetailTab( + id: index, + song: songNames[index], + color: color, ), + ), + ), ), ), ); @@ -117,8 +114,8 @@ class _SongsTabState extends State { actions: [ IconButton( icon: const Icon(Icons.refresh), - onPressed: - () async => await _androidRefreshKey.currentState!.show(), + onPressed: () async => + await _androidRefreshKey.currentState!.show(), ), IconButton( icon: const Icon(Icons.shuffle), @@ -168,6 +165,9 @@ class _SongsTabState extends State { @override Widget build(context) { - return PlatformWidget(androidBuilder: _buildAndroid, iosBuilder: _buildIos); + return PlatformWidget( + androidBuilder: _buildAndroid, + iosBuilder: _buildIos, + ); } } diff --git a/platform_design/lib/utils.dart b/platform_design/lib/utils.dart index e7fa1e8e8dd..ca41b15b7b5 100644 --- a/platform_design/lib/utils.dart +++ b/platform_design/lib/utils.dart @@ -39,7 +39,8 @@ String generateRandomHeadline() { 2 => '$artist releases ${capitalizePair(wordPairIterator.first)}', 3 => '$artist talks about his ${nouns[_random.nextInt(nouns.length)]}', 4 => '$artist talks about her ${nouns[_random.nextInt(nouns.length)]}', - 5 => '$artist talks about their ${nouns[_random.nextInt(nouns.length)]}', + 5 => + '$artist talks about their ${nouns[_random.nextInt(nouns.length)]}', 6 => '$artist says their music is inspired by ${wordPairIterator.first.join(' ')}', 7 => @@ -54,7 +55,9 @@ String generateRandomHeadline() { List getRandomColors(int amount) { return List.generate(amount, (index) { - return _myListOfRandomColors[_random.nextInt(_myListOfRandomColors.length)]; + return _myListOfRandomColors[_random.nextInt( + _myListOfRandomColors.length, + )]; }); } diff --git a/platform_design/lib/widgets.dart b/platform_design/lib/widgets.dart index cf0b795ee95..439f276dcb0 100644 --- a/platform_design/lib/widgets.dart +++ b/platform_design/lib/widgets.dart @@ -113,7 +113,10 @@ class _PressableCardState extends State scale: 1 - elevationAnimation.value * 0.03, child: Padding( padding: - const EdgeInsets.symmetric(vertical: 16, horizontal: 16) * + const EdgeInsets.symmetric( + vertical: 16, + horizontal: 16, + ) * flatten, child: PhysicalModel( elevation: @@ -310,7 +313,9 @@ void showChoices(BuildContext context, List choices) { }, child: Column( mainAxisSize: MainAxisSize.min, - children: List.generate(choices.length, (index) { + children: List.generate(choices.length, ( + index, + ) { return RadioListTile( title: Text(choices[index]), value: index, @@ -345,7 +350,9 @@ void showChoices(BuildContext context, List choices) { useMagnifier: true, magnification: 1.1, itemExtent: 40, - scrollController: FixedExtentScrollController(initialItem: 1), + scrollController: FixedExtentScrollController( + initialItem: 1, + ), children: List.generate(choices.length, (index) { return Center( child: Text( diff --git a/platform_design/pubspec.yaml b/platform_design/pubspec.yaml index d91118cf6e1..53709dad031 100644 --- a/platform_design/pubspec.yaml +++ b/platform_design/pubspec.yaml @@ -1,16 +1,16 @@ name: platform_design description: A project showcasing a Flutter app following different platform IA conventions. version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: english_words: ^4.0.0 flutter_lorem: ^2.0.0 flutter: sdk: flutter - cupertino_icons: ^1.0.2 dev_dependencies: @@ -18,6 +18,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/platform_view_swift/pubspec.yaml b/platform_view_swift/pubspec.yaml index 159ee998402..22c2b7d097c 100644 --- a/platform_view_swift/pubspec.yaml +++ b/platform_view_swift/pubspec.yaml @@ -1,15 +1,14 @@ name: platform_view_swift description: A new Flutter project. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.4 dev_dependencies: @@ -17,6 +16,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/provider_counter/lib/main.dart b/provider_counter/lib/main.dart index 1a6bdd03505..fff4e289fd4 100644 --- a/provider_counter/lib/main.dart +++ b/provider_counter/lib/main.dart @@ -32,7 +32,8 @@ const double windowWidth = 360; const double windowHeight = 640; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Provider Counter'); setWindowMinSize(const Size(windowWidth, windowHeight)); @@ -92,11 +93,10 @@ class MyHomePage extends StatelessWidget { // Then it uses that model to build widgets, and will trigger // rebuilds if the model is updated. Consumer( - builder: - (context, counter, child) => Text( - '${counter.value}', - style: Theme.of(context).textTheme.headlineMedium, - ), + builder: (context, counter, child) => Text( + '${counter.value}', + style: Theme.of(context).textTheme.headlineMedium, + ), ), ], ), diff --git a/provider_counter/pubspec.yaml b/provider_counter/pubspec.yaml index 1aa8464ce1a..ebf2cc39116 100644 --- a/provider_counter/pubspec.yaml +++ b/provider_counter/pubspec.yaml @@ -3,14 +3,14 @@ description: > The starter Flutter application, but using Provider to manage state. publish_to: none version: 1.0.0 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - provider: ^6.0.2 cupertino_icons: ^1.0.3 window_size: @@ -23,6 +23,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/provider_shopper/lib/main.dart b/provider_shopper/lib/main.dart index 111e9fe9ff6..395f2da1d88 100644 --- a/provider_shopper/lib/main.dart +++ b/provider_shopper/lib/main.dart @@ -25,7 +25,8 @@ const double windowWidth = 400; const double windowHeight = 800; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Provider Demo'); setWindowMinSize(const Size(windowWidth, windowHeight)); @@ -46,12 +47,18 @@ GoRouter router() { return GoRouter( initialLocation: '/login', routes: [ - GoRoute(path: '/login', builder: (context, state) => const MyLogin()), + GoRoute( + path: '/login', + builder: (context, state) => const MyLogin(), + ), GoRoute( path: '/catalog', builder: (context, state) => const MyCatalog(), routes: [ - GoRoute(path: 'cart', builder: (context, state) => const MyCart()), + GoRoute( + path: 'cart', + builder: (context, state) => const MyCart(), + ), ], ), ], diff --git a/provider_shopper/lib/models/cart.dart b/provider_shopper/lib/models/cart.dart index d416b084705..51f2888a429 100644 --- a/provider_shopper/lib/models/cart.dart +++ b/provider_shopper/lib/models/cart.dart @@ -24,7 +24,8 @@ class CartModel extends ChangeNotifier { } /// List of items in the cart. - List get items => _itemIds.map((id) => _catalog.getById(id)).toList(); + List get items => + _itemIds.map((id) => _catalog.getById(id)).toList(); /// The current total price of all items. int get totalPrice => diff --git a/provider_shopper/lib/screens/cart.dart b/provider_shopper/lib/screens/cart.dart index 9e063600b78..b90e866e3ca 100644 --- a/provider_shopper/lib/screens/cart.dart +++ b/provider_shopper/lib/screens/cart.dart @@ -13,7 +13,10 @@ class MyCart extends StatelessWidget { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - title: Text('Cart', style: Theme.of(context).textTheme.displayLarge), + title: Text( + 'Cart', + style: Theme.of(context).textTheme.displayLarge, + ), backgroundColor: Colors.white, ), body: Container( @@ -46,17 +49,16 @@ class _CartList extends StatelessWidget { return ListView.builder( itemCount: cart.items.length, - itemBuilder: - (context, index) => ListTile( - leading: const Icon(Icons.done), - trailing: IconButton( - icon: const Icon(Icons.remove_circle_outline), - onPressed: () { - cart.remove(cart.items[index]); - }, - ), - title: Text(cart.items[index].name, style: itemNameStyle), - ), + itemBuilder: (context, index) => ListTile( + leading: const Icon(Icons.done), + trailing: IconButton( + icon: const Icon(Icons.remove_circle_outline), + onPressed: () { + cart.remove(cart.items[index]); + }, + ), + title: Text(cart.items[index].name, style: itemNameStyle), + ), ); } } @@ -81,15 +83,16 @@ class _CartTotal extends StatelessWidget { // The important thing is that it will not rebuild // the rest of the widgets in this build method. Consumer( - builder: - (context, cart, child) => - Text('\$${cart.totalPrice}', style: hugeStyle), + builder: (context, cart, child) => + Text('\$${cart.totalPrice}', style: hugeStyle), ), const SizedBox(width: 24), FilledButton( onPressed: () { ScaffoldMessenger.of(context).showSnackBar( - const SnackBar(content: Text('Buying not supported yet.')), + const SnackBar( + content: Text('Buying not supported yet.'), + ), ); }, style: TextButton.styleFrom(foregroundColor: Colors.white), diff --git a/provider_shopper/lib/screens/catalog.dart b/provider_shopper/lib/screens/catalog.dart index 555251a74b0..476e1b8b9ca 100644 --- a/provider_shopper/lib/screens/catalog.dart +++ b/provider_shopper/lib/screens/catalog.dart @@ -48,17 +48,16 @@ class _AddButton extends StatelessWidget { ); return TextButton( - onPressed: - isInCart - ? null - : () { - // If the item is not in cart, we let the user add it. - // We are using context.read() here because the callback - // is executed whenever the user taps the button. In other - // words, it is executed outside the build method. - var cart = context.read(); - cart.add(item); - }, + onPressed: isInCart + ? null + : () { + // If the item is not in cart, we let the user add it. + // We are using context.read() here because the callback + // is executed whenever the user taps the button. In other + // words, it is executed outside the build method. + var cart = context.read(); + cart.add(item); + }, style: ButtonStyle( overlayColor: WidgetStateProperty.resolveWith((states) { if (states.contains(WidgetState.pressed)) { @@ -67,10 +66,9 @@ class _AddButton extends StatelessWidget { return null; // Defer to the widget's default. }), ), - child: - isInCart - ? const Icon(Icons.check, semanticLabel: 'ADDED') - : const Text('ADD'), + child: isInCart + ? const Icon(Icons.check, semanticLabel: 'ADDED') + : const Text('ADD'), ); } } @@ -79,7 +77,10 @@ class _MyAppBar extends StatelessWidget { @override Widget build(BuildContext context) { return SliverAppBar( - title: Text('Catalog', style: Theme.of(context).textTheme.displayLarge), + title: Text( + 'Catalog', + style: Theme.of(context).textTheme.displayLarge, + ), floating: true, actions: [ IconButton( @@ -111,7 +112,10 @@ class _MyListItem extends StatelessWidget { maxHeight: 48, child: Row( children: [ - AspectRatio(aspectRatio: 1, child: Container(color: item.color)), + AspectRatio( + aspectRatio: 1, + child: Container(color: item.color), + ), const SizedBox(width: 24), Expanded(child: Text(item.name, style: textTheme)), const SizedBox(width: 24), diff --git a/provider_shopper/lib/screens/login.dart b/provider_shopper/lib/screens/login.dart index 9b17ff1a425..6f0cfa40a8a 100644 --- a/provider_shopper/lib/screens/login.dart +++ b/provider_shopper/lib/screens/login.dart @@ -17,7 +17,10 @@ class MyLogin extends StatelessWidget { child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ - Text('Welcome', style: Theme.of(context).textTheme.displayLarge), + Text( + 'Welcome', + style: Theme.of(context).textTheme.displayLarge, + ), TextFormField( decoration: const InputDecoration(hintText: 'Username'), ), @@ -30,7 +33,9 @@ class MyLogin extends StatelessWidget { onPressed: () { context.pushReplacement('/catalog'); }, - style: ElevatedButton.styleFrom(backgroundColor: Colors.yellow), + style: ElevatedButton.styleFrom( + backgroundColor: Colors.yellow, + ), child: const Text('ENTER'), ), ], diff --git a/provider_shopper/pubspec.yaml b/provider_shopper/pubspec.yaml index af5c284218d..2c8524c97df 100644 --- a/provider_shopper/pubspec.yaml +++ b/provider_shopper/pubspec.yaml @@ -1,16 +1,16 @@ name: provider_shopper description: A shopping app sample that uses Provider for state management. publish_to: none - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - go_router: ^16.1.0 + go_router: ^16.0.0 provider: ^6.0.2 window_size: git: @@ -22,7 +22,6 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 00000000000..d4a2d4a9c0a --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,51 @@ +name: samples +description: A collection of samples for Dart and Flutter. + +environment: + sdk: ^3.9.0-0 + +workspace: + - add_to_app/android_view/flutter_module_using_plugin_android_view + - add_to_app/books/flutter_module_books + - add_to_app/fullscreen/flutter_module_fullscreen + - add_to_app/multiple_flutters/multiple_flutters_module + - add_to_app/plugin/flutter_module_using_plugin + - add_to_app/prebuilt_module/flutter_module + - analysis_defaults + - android_splash_screen + - animations + - asset_transformation + - background_isolate_channels + - code_sharing/client + - code_sharing/server + - code_sharing/shared + - context_menus + - date_planner + - deeplink_store_example + - desktop_photo_search/fluent_ui + - desktop_photo_search/material + - dynamic_theme + - form_app + - game_template + - gemini_tasks + - google_maps + - infinite_list + - ios_app_clip + - isolate_example + - material_3_demo + - navigation_and_routing + - pedometer + - pedometer/example + - platform_channels + - platform_design + - platform_view_swift + - provider_counter + - provider_shopper + - simple_shader + - simplistic_calculator + - simplistic_editor + - testing_app + - tool + - veggieseasons + - web_embedding/element_embedding_demo + - web_embedding/ng-flutter/flutter diff --git a/simple_shader/pubspec.yaml b/simple_shader/pubspec.yaml index f71b19ea2d3..cfca8f54dd9 100644 --- a/simple_shader/pubspec.yaml +++ b/simple_shader/pubspec.yaml @@ -2,9 +2,10 @@ name: simple_shader description: Using a shader, simply. publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: @@ -16,7 +17,6 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true shaders: diff --git a/simplistic_calculator/lib/main.dart b/simplistic_calculator/lib/main.dart index 0129f5d1d31..fab60a61e40 100644 --- a/simplistic_calculator/lib/main.dart +++ b/simplistic_calculator/lib/main.dart @@ -13,7 +13,8 @@ import 'package:math_expressions/math_expressions.dart'; import 'package:window_size/window_size.dart'; void main() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { WidgetsFlutterBinding.ensureInitialized(); setWindowTitle('Simplistic Calculator'); setWindowMinSize(const Size(600, 500)); @@ -107,14 +108,16 @@ class CalculatorEngine extends StateNotifier { mode: CalculatorEngineMode.result, ); default: - final resultStr = - result.ceil() == result - ? result.toInt().toString() - : result.toString(); + final resultStr = result.ceil() == result + ? result.toInt().toString() + : result.toString(); state = state.copyWith( buffer: resultStr, mode: CalculatorEngineMode.result, - calcHistory: ['${state.buffer} = $resultStr', ...state.calcHistory], + calcHistory: [ + '${state.buffer} = $resultStr', + ...state.calcHistory, + ], ); } } catch (err) { @@ -379,26 +382,25 @@ class CalculatorApp extends ConsumerWidget { horizontal: 8, vertical: 8, ), - child: - state.error.isEmpty - ? AutoSizeText( - state.buffer, - textAlign: TextAlign.end, - style: const TextStyle( - fontSize: 80, - color: Colors.black, - ), - maxLines: 2, - ) - : AutoSizeText( - state.error, - textAlign: TextAlign.start, - style: const TextStyle( - fontSize: 80, - color: Colors.red, - ), - maxLines: 2, + child: state.error.isEmpty + ? AutoSizeText( + state.buffer, + textAlign: TextAlign.end, + style: const TextStyle( + fontSize: 80, + color: Colors.black, ), + maxLines: 2, + ) + : AutoSizeText( + state.error, + textAlign: TextAlign.start, + style: const TextStyle( + fontSize: 80, + color: Colors.red, + ), + maxLines: 2, + ), ), ), ), diff --git a/simplistic_calculator/pubspec.yaml b/simplistic_calculator/pubspec.yaml index 41a86b172fb..7efb6ce8dca 100644 --- a/simplistic_calculator/pubspec.yaml +++ b/simplistic_calculator/pubspec.yaml @@ -2,9 +2,10 @@ name: simplistic_calculator description: A new Flutter project. publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: auto_size_text: ^3.0.0 @@ -18,7 +19,7 @@ dependencies: math_expressions: ^2.3.0 window_size: git: - url: https://github.com/google/flutter-desktop-embedding + url: https://github.com/google/flutter-desktop-embedding.git path: plugins/window_size dev_dependencies: @@ -26,6 +27,5 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - flutter: uses-material-design: true diff --git a/simplistic_editor/lib/app_state.dart b/simplistic_editor/lib/app_state.dart index e90a10167bb..f6be194048f 100644 --- a/simplistic_editor/lib/app_state.dart +++ b/simplistic_editor/lib/app_state.dart @@ -53,7 +53,9 @@ class AppStateWidgetState extends State { toggleButtonsState: {}, ); - void updateTextEditingDeltaHistory(List textEditingDeltas) { + void updateTextEditingDeltaHistory( + List textEditingDeltas, + ) { _data = _data.copyWith( textEditingDeltaHistory: [ ..._data.textEditingDeltaHistory, @@ -76,11 +78,12 @@ class AppStateWidgetState extends State { if (replacementStyles.isEmpty) { _data = _data.copyWith( - toggleButtonsState: Set.from(_data.toggleButtonsState)..removeAll({ - ToggleButtonsState.bold, - ToggleButtonsState.italic, - ToggleButtonsState.underline, - }), + toggleButtonsState: Set.from(_data.toggleButtonsState) + ..removeAll({ + ToggleButtonsState.bold, + ToggleButtonsState.italic, + ToggleButtonsState.underline, + }), ); } @@ -180,7 +183,8 @@ class AppStateWidgetState extends State { controller.applyReplacement( TextEditingInlineSpanReplacement( replacementRange, - (string, range) => TextSpan(text: string, style: attributeMap[index]), + (string, range) => + TextSpan(text: string, style: attributeMap[index]), true, ), ); diff --git a/simplistic_editor/lib/app_state_manager.dart b/simplistic_editor/lib/app_state_manager.dart index 3f9120d860f..c2ce6c046ec 100644 --- a/simplistic_editor/lib/app_state_manager.dart +++ b/simplistic_editor/lib/app_state_manager.dart @@ -10,8 +10,8 @@ class AppStateManager extends InheritedWidget { }) : _appState = state; static AppStateManager of(BuildContext context) { - final AppStateManager? result = - context.dependOnInheritedWidgetOfExactType(); + final AppStateManager? result = context + .dependOnInheritedWidgetOfExactType(); assert(result != null, 'No AppStateManager found in context'); return result!; } diff --git a/simplistic_editor/lib/basic_text_field.dart b/simplistic_editor/lib/basic_text_field.dart index fad6d733d71..f09774082b5 100644 --- a/simplistic_editor/lib/basic_text_field.dart +++ b/simplistic_editor/lib/basic_text_field.dart @@ -89,7 +89,9 @@ class _BasicTextFieldState extends State { TextSelection selection, SelectionChangedCause? cause, ) { - final bool willShowSelectionHandles = _shouldShowSelectionHandles(cause); + final bool willShowSelectionHandles = _shouldShowSelectionHandles( + cause, + ); if (willShowSelectionHandles != _showSelectionHandles) { setState(() { _showSelectionHandles = willShowSelectionHandles; @@ -98,16 +100,15 @@ class _BasicTextFieldState extends State { } void _onDragUpdate(DragUpdateDetails details) { - final Offset startOffset = - _renderEditable.maxLines == 1 - ? Offset( - _renderEditable.offset.pixels - _dragStartViewportOffset, - 0.0, - ) - : Offset( - 0.0, - _renderEditable.offset.pixels - _dragStartViewportOffset, - ); + final Offset startOffset = _renderEditable.maxLines == 1 + ? Offset( + _renderEditable.offset.pixels - _dragStartViewportOffset, + 0.0, + ) + : Offset( + 0.0, + _renderEditable.offset.pixels - _dragStartViewportOffset, + ); _renderEditable.selectPositionAt( from: _startDetails.globalPosition - startOffset, @@ -134,7 +135,8 @@ class _BasicTextFieldState extends State { _textSelectionControls = cupertinoTextSelectionHandleControls; case TargetPlatform.macOS: // ignore: deprecated_member_use - _textSelectionControls = cupertinoDesktopTextSelectionHandleControls; + _textSelectionControls = + cupertinoDesktopTextSelectionHandleControls; case TargetPlatform.android: case TargetPlatform.fuchsia: // ignore: deprecated_member_use @@ -151,7 +153,8 @@ class _BasicTextFieldState extends State { child: GestureDetector( behavior: HitTestBehavior.translucent, onPanStart: (dragStartDetails) => _onDragStart(dragStartDetails), - onPanUpdate: (dragUpdateDetails) => _onDragUpdate(dragUpdateDetails), + onPanUpdate: (dragUpdateDetails) => + _onDragUpdate(dragUpdateDetails), onSecondaryTapDown: (secondaryTapDownDetails) { _renderEditable.selectWordsInRange( from: secondaryTapDownDetails.globalPosition, @@ -190,12 +193,12 @@ class _BasicTextFieldState extends State { ); } }, - onLongPressEnd: - (longPressEndDetails) => _textInputClient!.showToolbar(), - onHorizontalDragStart: - (dragStartDetails) => _onDragStart(dragStartDetails), - onHorizontalDragUpdate: - (dragUpdateDetails) => _onDragUpdate(dragUpdateDetails), + onLongPressEnd: (longPressEndDetails) => + _textInputClient!.showToolbar(), + onHorizontalDragStart: (dragStartDetails) => + _onDragStart(dragStartDetails), + onHorizontalDragUpdate: (dragUpdateDetails) => + _onDragUpdate(dragUpdateDetails), child: SizedBox( height: double.infinity, width: MediaQuery.of(context).size.width, diff --git a/simplistic_editor/lib/basic_text_input_client.dart b/simplistic_editor/lib/basic_text_input_client.dart index c368813a684..f51d7a1666a 100644 --- a/simplistic_editor/lib/basic_text_input_client.dart +++ b/simplistic_editor/lib/basic_text_input_client.dart @@ -63,8 +63,9 @@ class BasicTextInputClientState extends State with TextSelectionDelegate, TextInputClient, DeltaTextInputClient { final GlobalKey _textKey = GlobalKey(); late AppStateWidgetState manager; - final ClipboardStatusNotifier? _clipboardStatus = - kIsWeb ? null : ClipboardStatusNotifier(); + final ClipboardStatusNotifier? _clipboardStatus = kIsWeb + ? null + : ClipboardStatusNotifier(); @override void initState() { @@ -180,7 +181,9 @@ class BasicTextInputClientState extends State } @override - void updateEditingValueWithDeltas(List textEditingDeltas) { + void updateEditingValueWithDeltas( + List textEditingDeltas, + ) { TextEditingValue value = _value; for (final TextEditingDelta delta in textEditingDeltas) { @@ -339,40 +342,40 @@ class BasicTextInputClientState extends State } // These actions have yet to be implemented for this sample. - static final Map> _unsupportedActions = - >{ - DeleteToNextWordBoundaryIntent: DoNothingAction(consumesKey: false), - DeleteToLineBreakIntent: DoNothingAction(consumesKey: false), - ExtendSelectionToNextWordBoundaryIntent: DoNothingAction( - consumesKey: false, - ), - ExtendSelectionToNextParagraphBoundaryOrCaretLocationIntent: - DoNothingAction(consumesKey: false), - ExtendSelectionToLineBreakIntent: DoNothingAction(consumesKey: false), - ExtendSelectionVerticallyToAdjacentLineIntent: DoNothingAction( - consumesKey: false, - ), - ExtendSelectionVerticallyToAdjacentPageIntent: DoNothingAction( - consumesKey: false, - ), - ExtendSelectionToNextParagraphBoundaryIntent: DoNothingAction( - consumesKey: false, - ), - ExtendSelectionToDocumentBoundaryIntent: DoNothingAction( - consumesKey: false, - ), - ExtendSelectionByPageIntent: DoNothingAction(consumesKey: false), - ExpandSelectionToDocumentBoundaryIntent: DoNothingAction( - consumesKey: false, - ), - ExpandSelectionToLineBreakIntent: DoNothingAction(consumesKey: false), - ScrollToDocumentBoundaryIntent: DoNothingAction(consumesKey: false), - RedoTextIntent: DoNothingAction(consumesKey: false), - ReplaceTextIntent: DoNothingAction(consumesKey: false), - UndoTextIntent: DoNothingAction(consumesKey: false), - UpdateSelectionIntent: DoNothingAction(consumesKey: false), - TransposeCharactersIntent: DoNothingAction(consumesKey: false), - }; + static final Map> + _unsupportedActions = >{ + DeleteToNextWordBoundaryIntent: DoNothingAction(consumesKey: false), + DeleteToLineBreakIntent: DoNothingAction(consumesKey: false), + ExtendSelectionToNextWordBoundaryIntent: DoNothingAction( + consumesKey: false, + ), + ExtendSelectionToNextParagraphBoundaryOrCaretLocationIntent: + DoNothingAction(consumesKey: false), + ExtendSelectionToLineBreakIntent: DoNothingAction(consumesKey: false), + ExtendSelectionVerticallyToAdjacentLineIntent: DoNothingAction( + consumesKey: false, + ), + ExtendSelectionVerticallyToAdjacentPageIntent: DoNothingAction( + consumesKey: false, + ), + ExtendSelectionToNextParagraphBoundaryIntent: DoNothingAction( + consumesKey: false, + ), + ExtendSelectionToDocumentBoundaryIntent: DoNothingAction( + consumesKey: false, + ), + ExtendSelectionByPageIntent: DoNothingAction(consumesKey: false), + ExpandSelectionToDocumentBoundaryIntent: DoNothingAction( + consumesKey: false, + ), + ExpandSelectionToLineBreakIntent: DoNothingAction(consumesKey: false), + ScrollToDocumentBoundaryIntent: DoNothingAction(consumesKey: false), + RedoTextIntent: DoNothingAction(consumesKey: false), + ReplaceTextIntent: DoNothingAction(consumesKey: false), + UndoTextIntent: DoNothingAction(consumesKey: false), + UpdateSelectionIntent: DoNothingAction(consumesKey: false), + TransposeCharactersIntent: DoNothingAction(consumesKey: false), + }; /// Keyboard text editing actions. // The Handling of the default text editing shortcuts with deltas @@ -388,9 +391,8 @@ class BasicTextInputClientState extends State ), ExtendSelectionByCharacterIntent: CallbackAction( - onInvoke: - (intent) => - _extendSelection(intent.forward, intent.collapseSelection), + onInvoke: (intent) => + _extendSelection(intent.forward, intent.collapseSelection), ), SelectAllTextIntent: CallbackAction( onInvoke: (intent) => selectAll(intent.cause), @@ -401,7 +403,9 @@ class BasicTextInputClientState extends State PasteTextIntent: CallbackAction( onInvoke: (intent) => pasteText(intent.cause), ), - DoNothingAndStopPropagationTextIntent: DoNothingAction(consumesKey: false), + DoNothingAndStopPropagationTextIntent: DoNothingAction( + consumesKey: false, + ), ..._unsupportedActions, }; @@ -458,47 +462,47 @@ class BasicTextInputClientState extends State if (collapseSelection) { if (!_selection.isCollapsed) { - final int firstOffset = - _selection.isNormalized ? _selection.start : _selection.end; - final int lastOffset = - _selection.isNormalized ? _selection.end : _selection.start; + final int firstOffset = _selection.isNormalized + ? _selection.start + : _selection.end; + final int lastOffset = _selection.isNormalized + ? _selection.end + : _selection.start; selection = TextSelection.collapsed( offset: forward ? lastOffset : firstOffset, ); } else { if (forward && _selection.baseOffset == _value.text.length) return; if (!forward && _selection.baseOffset == 0) return; - final int adjustment = - forward - ? _value.text - .substring(_selection.baseOffset) - .characters - .first - .length - : -_value.text - .substring(0, _selection.baseOffset) - .characters - .last - .length; - selection = TextSelection.collapsed( - offset: _selection.baseOffset + adjustment, - ); - } - } else { - if (forward && _selection.extentOffset == _value.text.length) return; - if (!forward && _selection.extentOffset == 0) return; - final int adjustment = - forward - ? _value.text + final int adjustment = forward + ? _value.text .substring(_selection.baseOffset) .characters .first .length - : -_value.text + : -_value.text .substring(0, _selection.baseOffset) .characters .last .length; + selection = TextSelection.collapsed( + offset: _selection.baseOffset + adjustment, + ); + } + } else { + if (forward && _selection.extentOffset == _value.text.length) return; + if (!forward && _selection.extentOffset == 0) return; + final int adjustment = forward + ? _value.text + .substring(_selection.baseOffset) + .characters + .first + .length + : -_value.text + .substring(0, _selection.baseOffset) + .characters + .last + .length; selection = TextSelection( baseOffset: _selection.baseOffset, extentOffset: _selection.extentOffset + adjustment, @@ -578,7 +582,9 @@ class BasicTextInputClientState extends State void _updateCaretRectIfNeeded() { final TextSelection? selection = renderEditable.selection; - if (selection == null || !selection.isValid || !selection.isCollapsed) { + if (selection == null || + !selection.isValid || + !selection.isCollapsed) { return; } final TextPosition currentTextPosition = TextPosition( @@ -691,7 +697,9 @@ class BasicTextInputClientState extends State final TextSelection pasteRange = textEditingValue.selection; if (!pasteRange.isValid) return; - final ClipboardData? data = await Clipboard.getData(Clipboard.kTextPlain); + final ClipboardData? data = await Clipboard.getData( + Clipboard.kTextPlain, + ); if (data == null) return; // After the paste, the cursor should be collapsed and located after the @@ -846,7 +854,8 @@ class BasicTextInputClientState extends State requestKeyboard(); } } - if (widget.selectionControls == null && widget.contextMenuBuilder == null) { + if (widget.selectionControls == null && + widget.contextMenuBuilder == null) { _selectionOverlay?.dispose(); _selectionOverlay = null; } else { @@ -891,41 +900,43 @@ class BasicTextInputClientState extends State onSelectionHandleTapped: () { _toggleToolbar(); }, - contextMenuBuilder: - widget.contextMenuBuilder == null || kIsWeb - ? null - : (context) { - return widget.contextMenuBuilder!( - context, - _clipboardStatus!.value, - copyEnabled - ? () => copySelection(SelectionChangedCause.toolbar) - : null, - cutEnabled - ? () => cutSelection(SelectionChangedCause.toolbar) - : null, - pasteEnabled - ? () => pasteText(SelectionChangedCause.toolbar) - : null, - selectAllEnabled - ? () => selectAll(SelectionChangedCause.toolbar) - : null, - lookUpEnabled - ? () => _lookUpSelection(SelectionChangedCause.toolbar) - : null, - liveTextInputEnabled - ? () => _startLiveTextInput(SelectionChangedCause.toolbar) - : null, - searchWebEnabled - ? () => - _searchWebForSelection(SelectionChangedCause.toolbar) - : null, - shareEnabled - ? () => _shareSelection(SelectionChangedCause.toolbar) - : null, - _contextMenuAnchors, - ); - }, + contextMenuBuilder: widget.contextMenuBuilder == null || kIsWeb + ? null + : (context) { + return widget.contextMenuBuilder!( + context, + _clipboardStatus!.value, + copyEnabled + ? () => copySelection(SelectionChangedCause.toolbar) + : null, + cutEnabled + ? () => cutSelection(SelectionChangedCause.toolbar) + : null, + pasteEnabled + ? () => pasteText(SelectionChangedCause.toolbar) + : null, + selectAllEnabled + ? () => selectAll(SelectionChangedCause.toolbar) + : null, + lookUpEnabled + ? () => _lookUpSelection(SelectionChangedCause.toolbar) + : null, + liveTextInputEnabled + ? () => _startLiveTextInput( + SelectionChangedCause.toolbar, + ) + : null, + searchWebEnabled + ? () => _searchWebForSelection( + SelectionChangedCause.toolbar, + ) + : null, + shareEnabled + ? () => _shareSelection(SelectionChangedCause.toolbar) + : null, + _contextMenuAnchors, + ); + }, magnifierConfiguration: TextMagnifierConfiguration.disabled, ); @@ -933,8 +944,8 @@ class BasicTextInputClientState extends State } void _toggleToolbar() { - final TextSelectionOverlay selectionOverlay = - _selectionOverlay ??= _createSelectionOverlay(); + final TextSelectionOverlay selectionOverlay = _selectionOverlay ??= + _createSelectionOverlay(); if (selectionOverlay.toolbarIsVisible) { hideToolbar(false); @@ -971,7 +982,9 @@ class BasicTextInputClientState extends State final InlineSpan span = renderEditable.text!; final String prevText = span.toPlainText(); final String currText = textEditingValue.text; - if (prevText != currText || !selection.isValid || selection.isCollapsed) { + if (prevText != currText || + !selection.isValid || + selection.isCollapsed) { return _GlyphHeights( start: renderEditable.preferredLineHeight, end: renderEditable.preferredLineHeight, @@ -981,12 +994,13 @@ class BasicTextInputClientState extends State final String selectedGraphemes = selection.textInside(currText); final int firstSelectedGraphemeExtent = selectedGraphemes.characters.first.length; - final Rect? startCharacterRect = renderEditable.getRectForComposingRange( - TextRange( - start: selection.start, - end: selection.start + firstSelectedGraphemeExtent, - ), - ); + final Rect? startCharacterRect = renderEditable + .getRectForComposingRange( + TextRange( + start: selection.start, + end: selection.start + firstSelectedGraphemeExtent, + ), + ); final int lastSelectedGraphemeExtent = selectedGraphemes.characters.last.length; final Rect? endCharacterRect = renderEditable.getRectForComposingRange( @@ -996,7 +1010,8 @@ class BasicTextInputClientState extends State ), ); return _GlyphHeights( - start: startCharacterRect?.height ?? renderEditable.preferredLineHeight, + start: + startCharacterRect?.height ?? renderEditable.preferredLineHeight, end: endCharacterRect?.height ?? renderEditable.preferredLineHeight, ); } @@ -1023,8 +1038,9 @@ class BasicTextInputClientState extends State /// For OCR Support. /// Detects whether the Live Text input is enabled. - final LiveTextInputStatusNotifier? _liveTextInputStatus = - kIsWeb ? null : LiveTextInputStatusNotifier(); + final LiveTextInputStatusNotifier? _liveTextInputStatus = kIsWeb + ? null + : LiveTextInputStatusNotifier(); @override bool get liveTextInputEnabled { @@ -1079,7 +1095,9 @@ class BasicTextInputClientState extends State } return !textEditingValue.selection.isCollapsed && - textEditingValue.selection.textInside(textEditingValue.text).trim() != + textEditingValue.selection + .textInside(textEditingValue.text) + .trim() != ''; } @@ -1142,7 +1160,8 @@ class BasicTextInputClientState extends State startHandleLayerLink: _startHandleLayerLink, endHandleLayerLink: _endHandleLayerLink, inlineSpan: _buildTextSpan(), - value: _value, // We pass value.selection to RenderEditable. + value: + _value, // We pass value.selection to RenderEditable. cursorColor: Colors.blue, backgroundCursorColor: Colors.grey[100], showCursor: ValueNotifier(_hasFocus), @@ -1159,7 +1178,9 @@ class BasicTextInputClientState extends State textAlign: TextAlign.left, textDirection: _textDirection, locale: Localizations.maybeLocaleOf(context), - textHeightBehavior: DefaultTextHeightBehavior.maybeOf(context), + textHeightBehavior: DefaultTextHeightBehavior.maybeOf( + context, + ), textWidthBasis: TextWidthBasis.parent, obscuringCharacter: '•', obscureText: @@ -1321,7 +1342,10 @@ class _Editable extends MultiChildRenderObjectWidget { } @override - void updateRenderObject(BuildContext context, RenderEditable renderObject) { + void updateRenderObject( + BuildContext context, + RenderEditable renderObject, + ) { renderObject ..text = inlineSpan ..cursorColor = cursorColor diff --git a/simplistic_editor/lib/formatting_toolbar.dart b/simplistic_editor/lib/formatting_toolbar.dart index 7f023cd4a6f..ef321880e41 100644 --- a/simplistic_editor/lib/formatting_toolbar.dart +++ b/simplistic_editor/lib/formatting_toolbar.dart @@ -31,10 +31,9 @@ class FormattingToolbar extends StatelessWidget { ToggleButtonsState.underline, ), ], - onPressed: - (index) => AppStateWidget.of( - context, - ).updateToggleButtonsStateOnButtonPressed(index), + onPressed: (index) => AppStateWidget.of( + context, + ).updateToggleButtonsStateOnButtonPressed(index), children: const [ Icon(Icons.format_bold), Icon(Icons.format_italic), diff --git a/simplistic_editor/lib/main.dart b/simplistic_editor/lib/main.dart index 970e8b2a988..35a5c1383ba 100644 --- a/simplistic_editor/lib/main.dart +++ b/simplistic_editor/lib/main.dart @@ -49,8 +49,9 @@ class _MyHomePageState extends State { @override void didChangeDependencies() { super.didChangeDependencies(); - _replacementTextEditingController = - AppStateManager.of(context).appState.replacementsController; + _replacementTextEditingController = AppStateManager.of( + context, + ).appState.replacementsController; } static Route _aboutDialogBuilder( @@ -67,11 +68,10 @@ class _MyHomePageState extends State { ' more powerful rich text editing applications such as this small example. This feature is supported on all platforms.'; return DialogRoute( context: context, - builder: - (context) => const AlertDialog( - title: Center(child: Text('About')), - content: Text(aboutContent), - ), + builder: (context) => const AlertDialog( + title: Center(child: Text('About')), + content: Text(aboutContent), + ), ); } @@ -100,7 +100,10 @@ class _MyHomePageState extends State { padding: const EdgeInsets.symmetric(horizontal: 35.0), child: BasicTextField( controller: _replacementTextEditingController, - style: const TextStyle(fontSize: 18.0, color: Colors.black), + style: const TextStyle( + fontSize: 18.0, + color: Colors.black, + ), focusNode: _focusNode, ), ), diff --git a/simplistic_editor/lib/replacements.dart b/simplistic_editor/lib/replacements.dart index a8312ea5fd5..f868f728032 100644 --- a/simplistic_editor/lib/replacements.dart +++ b/simplistic_editor/lib/replacements.dart @@ -41,7 +41,11 @@ typedef InlineSpanGenerator = InlineSpan Function(String, TextRange); class TextEditingInlineSpanReplacement { /// Constructs a replacement that replaces matches of the [TextRange] with the /// output of the [generator]. - TextEditingInlineSpanReplacement(this.range, this.generator, this.expand); + TextEditingInlineSpanReplacement( + this.range, + this.generator, + this.expand, + ); /// The [TextRange] to replace. /// @@ -54,7 +58,9 @@ class TextEditingInlineSpanReplacement { bool expand; - TextEditingInlineSpanReplacement? onDelete(TextEditingDeltaDeletion delta) { + TextEditingInlineSpanReplacement? onDelete( + TextEditingDeltaDeletion delta, + ) { final TextRange deletedRange = delta.deletedRange; final int deletedLength = delta.textDeleted.length; @@ -75,7 +81,10 @@ class TextEditingInlineSpanReplacement { } else if (range.start < deletedRange.start && range.end > deletedRange.end) { return copy( - range: TextRange(start: range.start, end: range.end - deletedLength), + range: TextRange( + start: range.start, + end: range.end - deletedLength, + ), ); } else if (range.start >= deletedRange.start && range.end <= deletedRange.end) { @@ -90,7 +99,9 @@ class TextEditingInlineSpanReplacement { ); } else if (range.end <= deletedRange.start && range.end < deletedRange.end) { - return copy(range: TextRange(start: range.start, end: range.end)); + return copy( + range: TextRange(start: range.start, end: range.end), + ); } return null; @@ -105,24 +116,36 @@ class TextEditingInlineSpanReplacement { if (range.end == insertionOffset) { if (expand) { return copy( - range: TextRange(start: range.start, end: range.end + insertedLength), + range: TextRange( + start: range.start, + end: range.end + insertedLength, + ), ); } else { - return copy(range: TextRange(start: range.start, end: range.end)); + return copy( + range: TextRange(start: range.start, end: range.end), + ); } } if (range.start < insertionOffset && range.end < insertionOffset) { - return copy(range: TextRange(start: range.start, end: range.end)); - } else if (range.start >= insertionOffset && range.end > insertionOffset) { + return copy( + range: TextRange(start: range.start, end: range.end), + ); + } else if (range.start >= insertionOffset && + range.end > insertionOffset) { return copy( range: TextRange( start: range.start + insertedLength, end: range.end + insertedLength, ), ); - } else if (range.start < insertionOffset && range.end > insertionOffset) { + } else if (range.start < insertionOffset && + range.end > insertionOffset) { return copy( - range: TextRange(start: range.start, end: range.end + insertedLength), + range: TextRange( + start: range.start, + end: range.end + insertedLength, + ), ); } @@ -139,13 +162,13 @@ class TextEditingInlineSpanReplacement { delta.replacementText.length > delta.textReplaced.length; final bool replacementEqualLength = delta.replacementText.length == delta.textReplaced.length; - final int changedOffset = - replacementShortenedText - ? delta.textReplaced.length - delta.replacementText.length - : delta.replacementText.length - delta.textReplaced.length; + final int changedOffset = replacementShortenedText + ? delta.textReplaced.length - delta.replacementText.length + : delta.replacementText.length - delta.textReplaced.length; if (range.start >= replacedRange.start && - (range.start < replacedRange.end && range.end > replacedRange.end)) { + (range.start < replacedRange.end && + range.end > replacedRange.end)) { if (replacementShortenedText) { return [ copy( @@ -166,20 +189,26 @@ class TextEditingInlineSpanReplacement { ]; } else if (replacementEqualLength) { return [ - copy(range: TextRange(start: replacedRange.end, end: range.end)), + copy( + range: TextRange(start: replacedRange.end, end: range.end), + ), ]; } } else if ((range.start < replacedRange.start && range.end > replacedRange.start) && range.end <= replacedRange.end) { return [ - copy(range: TextRange(start: range.start, end: replacedRange.start)), + copy( + range: TextRange(start: range.start, end: replacedRange.start), + ), ]; } else if (range.start < replacedRange.start && range.end > replacedRange.end) { if (replacementShortenedText) { return [ - copy(range: TextRange(start: range.start, end: replacedRange.start)), + copy( + range: TextRange(start: range.start, end: replacedRange.start), + ), copy( range: TextRange( start: replacedRange.end - changedOffset, @@ -189,7 +218,9 @@ class TextEditingInlineSpanReplacement { ]; } else if (replacementLengthenedText) { return [ - copy(range: TextRange(start: range.start, end: replacedRange.start)), + copy( + range: TextRange(start: range.start, end: replacedRange.start), + ), copy( range: TextRange( start: replacedRange.end + changedOffset, @@ -199,8 +230,12 @@ class TextEditingInlineSpanReplacement { ]; } else if (replacementEqualLength) { return [ - copy(range: TextRange(start: range.start, end: replacedRange.start)), - copy(range: TextRange(start: replacedRange.end, end: range.end)), + copy( + range: TextRange(start: range.start, end: replacedRange.start), + ), + copy( + range: TextRange(start: replacedRange.end, end: range.end), + ), ]; } } else if (range.start >= replacedRange.start && @@ -232,7 +267,11 @@ class TextEditingInlineSpanReplacement { } } else if (range.end <= replacedRange.start && range.end < replacedRange.end) { - return [copy(range: TextRange(start: range.start, end: range.end))]; + return [ + copy( + range: TextRange(start: range.start, end: range.end), + ), + ]; } return null; @@ -250,15 +289,23 @@ class TextEditingInlineSpanReplacement { return this; } - List? removeRange(TextRange removalRange) { + List? removeRange( + TextRange removalRange, + ) { if (range.start >= removalRange.start && (range.start < removalRange.end && range.end > removalRange.end)) { - return [copy(range: TextRange(start: removalRange.end, end: range.end))]; + return [ + copy( + range: TextRange(start: removalRange.end, end: range.end), + ), + ]; } else if ((range.start < removalRange.start && range.end > removalRange.start) && range.end <= removalRange.end) { return [ - copy(range: TextRange(start: range.start, end: removalRange.start)), + copy( + range: TextRange(start: range.start, end: removalRange.start), + ), ]; } else if (range.start < removalRange.start && range.end > removalRange.end) { @@ -267,7 +314,9 @@ class TextEditingInlineSpanReplacement { range: TextRange(start: range.start, end: removalRange.start), expand: removalRange.isCollapsed ? false : expand, ), - copy(range: TextRange(start: removalRange.end, end: range.end)), + copy( + range: TextRange(start: removalRange.end, end: range.end), + ), ]; } else if (range.start >= removalRange.start && range.end <= removalRange.end) { @@ -278,7 +327,8 @@ class TextEditingInlineSpanReplacement { } else if (range.end <= removalRange.start && range.end < removalRange.end) { return [this]; - } else if (removalRange.isCollapsed && range.end == removalRange.start) { + } else if (removalRange.isCollapsed && + range.end == removalRange.start) { return [this]; } @@ -453,7 +503,9 @@ class ReplacementTextEditingController extends TextEditingController { required bool withComposing, }) { assert( - !value.composing.isValid || !withComposing || value.isComposingRangeValid, + !value.composing.isValid || + !withComposing || + value.isComposingRangeValid, ); // Keep a mapping of TextRanges to the InlineSpan to replace it with. @@ -467,7 +519,10 @@ class ReplacementTextEditingController extends TextEditingController { in replacements!) { _addToMappingWithOverlaps( replacement.generator, - TextRange(start: replacement.range.start, end: replacement.range.end), + TextRange( + start: replacement.range.start, + end: replacement.range.end, + ), rangeSpanMapping, value.text, ); @@ -484,12 +539,11 @@ class ReplacementTextEditingController extends TextEditingController { withComposing) { _addToMappingWithOverlaps( (value, range) { - final TextStyle composingStyle = - style != null - ? style.merge( - const TextStyle(decoration: TextDecoration.underline), - ) - : const TextStyle(decoration: TextDecoration.underline); + final TextStyle composingStyle = style != null + ? style.merge( + const TextStyle(decoration: TextDecoration.underline), + ) + : const TextStyle(decoration: TextDecoration.underline); return TextSpan(style: composingStyle, text: value); }, value.composing, @@ -509,7 +563,9 @@ class ReplacementTextEditingController extends TextEditingController { for (final TextRange range in sortedRanges) { if (range.start > previousEndIndex) { spans.add( - TextSpan(text: value.text.substring(previousEndIndex, range.start)), + TextSpan( + text: value.text.substring(previousEndIndex, range.start), + ), ); } spans.add(rangeSpanMapping[range]!); @@ -624,8 +680,9 @@ class ReplacementTextEditingController extends TextEditingController { } Set styles = {}; - List otherEndPoints = - endPoints.getRange(1, endPoints.length).toList(); + List otherEndPoints = endPoints + .getRange(1, endPoints.length) + .toList(); for (int i = 0; i < endPoints.length - 1; i++) { styles = styles.difference(end[endPoints[i]]!); styles.addAll(start[endPoints[i]]!); @@ -671,7 +728,8 @@ class ReplacementTextEditingController extends TextEditingController { final List toRemove = []; final List toAdd = []; - for (final TextEditingInlineSpanReplacement replacement in replacements!) { + for (final TextEditingInlineSpanReplacement replacement + in replacements!) { if (replacement.range.end == selection.start) { TextStyle? replacementStyle = (replacement.generator('', const TextRange.collapsed(0)) @@ -689,7 +747,8 @@ class ReplacementTextEditingController extends TextEditingController { replacements!.remove(replacementToRemove); } - for (final TextEditingInlineSpanReplacement replacementWithExpandDisabled + for (final TextEditingInlineSpanReplacement + replacementWithExpandDisabled in toAdd) { replacements!.add(replacementWithExpandDisabled); } @@ -704,7 +763,8 @@ class ReplacementTextEditingController extends TextEditingController { // should be enabled. final List stylesAtSelection = []; - for (final TextEditingInlineSpanReplacement replacement in replacements!) { + for (final TextEditingInlineSpanReplacement replacement + in replacements!) { if (selection.isCollapsed) { if (math.max(replacement.range.start, selection.start) <= math.min(replacement.range.end, selection.end)) { @@ -738,7 +798,10 @@ class ReplacementTextEditingController extends TextEditingController { return stylesAtSelection; } - void removeReplacementsAtRange(TextRange removalRange, TextStyle? attribute) { + void removeReplacementsAtRange( + TextRange removalRange, + TextStyle? attribute, + ) { final List toRemove = []; final List toAdd = []; @@ -755,8 +818,8 @@ class ReplacementTextEditingController extends TextEditingController { math.min(replacement.range.end, removalRange.end)) && replacementStyle != null) { if (replacementStyle == attribute!) { - List? newReplacements = replacement - .removeRange(removalRange); + List? newReplacements = + replacement.removeRange(removalRange); if (newReplacements != null) { if (newReplacements.length == 1) { @@ -782,7 +845,8 @@ class ReplacementTextEditingController extends TextEditingController { replacements!.add(replacementToAdd); } - for (TextEditingInlineSpanReplacement replacementToRemove in toRemove) { + for (TextEditingInlineSpanReplacement replacementToRemove + in toRemove) { replacements!.remove(replacementToRemove); } } diff --git a/simplistic_editor/lib/text_editing_delta_history_view.dart b/simplistic_editor/lib/text_editing_delta_history_view.dart index 4db34eaa6b7..72a3120003e 100644 --- a/simplistic_editor/lib/text_editing_delta_history_view.dart +++ b/simplistic_editor/lib/text_editing_delta_history_view.dart @@ -64,7 +64,10 @@ class TextEditingDeltaHistoryView extends StatelessWidget { Widget _buildTextEditingDeltaViewHeader() { return Padding( - padding: const EdgeInsets.symmetric(horizontal: 35.0, vertical: 10.0), + padding: const EdgeInsets.symmetric( + horizontal: 35.0, + vertical: 10.0, + ), child: Row( children: [ Expanded( @@ -186,9 +189,15 @@ class TextEditingDeltaView extends StatelessWidget { children: [ Expanded(child: Text(deltaType)), Expanded(child: Text(deltaText)), - Expanded(child: Text('(${deltaRange.start}, ${deltaRange.end})')), - Expanded(child: Text('(${newSelection.start}, ${newSelection.end})')), - Expanded(child: Text('(${newComposing.start}, ${newComposing.end})')), + Expanded( + child: Text('(${deltaRange.start}, ${deltaRange.end})'), + ), + Expanded( + child: Text('(${newSelection.start}, ${newSelection.end})'), + ), + Expanded( + child: Text('(${newComposing.start}, ${newComposing.end})'), + ), ], ), ); diff --git a/simplistic_editor/pubspec.yaml b/simplistic_editor/pubspec.yaml index 016eb3e4cfc..9cdf3ae6d18 100644 --- a/simplistic_editor/pubspec.yaml +++ b/simplistic_editor/pubspec.yaml @@ -1,5 +1,7 @@ name: simplistic_editor description: A new Flutter project. +version: 1.0.0+1 +resolution: workspace # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. @@ -15,10 +17,10 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.0.0+1 + environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -30,7 +32,6 @@ dependencies: flutter: sdk: flutter - # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 @@ -40,7 +41,6 @@ dev_dependencies: path: ../analysis_defaults flutter_test: sdk: flutter - # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/simplistic_editor/test/main_screen_test.dart b/simplistic_editor/test/main_screen_test.dart index cb19abc718b..c7220b551be 100644 --- a/simplistic_editor/test/main_screen_test.dart +++ b/simplistic_editor/test/main_screen_test.dart @@ -71,7 +71,10 @@ void main() { ); // About Dialog - expect(find.widgetWithIcon(IconButton, Icons.info_outline), findsOneWidget); + expect( + find.widgetWithIcon(IconButton, Icons.info_outline), + findsOneWidget, + ); await tester.tap(find.widgetWithIcon(IconButton, Icons.info_outline)); await tester.pumpAndSettle(); expect(find.widgetWithText(Center, 'About'), findsOneWidget); diff --git a/testing_app/integration_test/perf_test.dart b/testing_app/integration_test/perf_test.dart index 4536de123d1..20e4d9d1811 100644 --- a/testing_app/integration_test/perf_test.dart +++ b/testing_app/integration_test/perf_test.dart @@ -9,11 +9,13 @@ import 'package:testing_app/main.dart'; void main() { group('Testing App Performance Tests', () { - final binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized(); + final binding = + IntegrationTestWidgetsFlutterBinding.ensureInitialized(); // The fullyLive frame policy simulates // the way Flutter responds to animations. - binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive; + binding.framePolicy = + LiveTestWidgetsFlutterBindingFramePolicy.fullyLive; testWidgets('Scrolling test', (tester) async { await tester.pumpWidget(const TestingApp()); diff --git a/testing_app/integration_test/state_mgmt_test.dart b/testing_app/integration_test/state_mgmt_test.dart index dc272638f74..6dabad4432e 100644 --- a/testing_app/integration_test/state_mgmt_test.dart +++ b/testing_app/integration_test/state_mgmt_test.dart @@ -12,12 +12,12 @@ import 'package:testing_app/screens/favorites.dart'; late Favorites favoritesList; Widget createFavoritesScreen() => ChangeNotifierProvider( - create: (context) { - favoritesList = Favorites(); - return favoritesList; - }, - child: const MaterialApp(home: FavoritesPage()), - ); + create: (context) { + favoritesList = Favorites(); + return favoritesList; + }, + child: const MaterialApp(home: FavoritesPage()), +); void main() { group('Testing App State Management Tests', () { diff --git a/testing_app/lib/screens/favorites.dart b/testing_app/lib/screens/favorites.dart index 7db6a7c12a6..5aaa2886403 100644 --- a/testing_app/lib/screens/favorites.dart +++ b/testing_app/lib/screens/favorites.dart @@ -41,7 +41,8 @@ class FavoriteItemTile extends StatelessWidget { padding: const EdgeInsets.all(8.0), child: ListTile( leading: CircleAvatar( - backgroundColor: Colors.primaries[itemNo % Colors.primaries.length], + backgroundColor: + Colors.primaries[itemNo % Colors.primaries.length], ), title: Text('Item $itemNo', key: Key('favorites_text_$itemNo')), trailing: IconButton( diff --git a/testing_app/lib/screens/home.dart b/testing_app/lib/screens/home.dart index 2eac461db70..efe535e3c9d 100644 --- a/testing_app/lib/screens/home.dart +++ b/testing_app/lib/screens/home.dart @@ -52,7 +52,8 @@ class ItemTile extends StatelessWidget { padding: const EdgeInsets.all(8.0), child: ListTile( leading: CircleAvatar( - backgroundColor: Colors.primaries[itemNo % Colors.primaries.length], + backgroundColor: + Colors.primaries[itemNo % Colors.primaries.length], ), title: Text('Item $itemNo', key: Key('text_$itemNo')), trailing: IconButton( diff --git a/testing_app/pubspec.yaml b/testing_app/pubspec.yaml index fcad7cf3be2..3d0b1357b34 100644 --- a/testing_app/pubspec.yaml +++ b/testing_app/pubspec.yaml @@ -1,18 +1,17 @@ name: testing_app description: A sample that shows testing in Flutter. - version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.6.0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.3 provider: ^6.0.2 - go_router: ">=10.0.0 <17.0.0" + go_router: ^16.0.0 dev_dependencies: analysis_defaults: diff --git a/testing_app/test/favorites_test.dart b/testing_app/test/favorites_test.dart index be9f216501f..f89815a9979 100644 --- a/testing_app/test/favorites_test.dart +++ b/testing_app/test/favorites_test.dart @@ -11,12 +11,12 @@ import 'package:testing_app/screens/favorites.dart'; late Favorites favoritesList; Widget createFavoritesScreen() => ChangeNotifierProvider( - create: (context) { - favoritesList = Favorites(); - return favoritesList; - }, - child: const MaterialApp(home: FavoritesPage()), - ); + create: (context) { + favoritesList = Favorites(); + return favoritesList; + }, + child: const MaterialApp(home: FavoritesPage()), +); void addItems() { for (var i = 0; i < 5; i++) { @@ -52,7 +52,9 @@ void main() { await tester.pumpAndSettle(); // Get the total number of items available. - final totalItems = tester.widgetList(find.byIcon(Icons.close)).length; + final totalItems = tester + .widgetList(find.byIcon(Icons.close)) + .length; // Remove one item. await tester.tap(find.byIcon(Icons.close).first); diff --git a/testing_app/test/home_test.dart b/testing_app/test/home_test.dart index b81deb1d45b..a73f0c5ab34 100644 --- a/testing_app/test/home_test.dart +++ b/testing_app/test/home_test.dart @@ -9,9 +9,9 @@ import 'package:testing_app/main.dart'; import 'package:testing_app/models/favorites.dart'; Widget createHomeScreen() => ChangeNotifierProvider( - create: (context) => Favorites(), - child: MaterialApp.router(routerConfig: router()), - ); + create: (context) => Favorites(), + child: MaterialApp.router(routerConfig: router()), +); void main() { group('Home Page Widget Tests', () { @@ -29,7 +29,11 @@ void main() { expect(find.text('Item 0'), findsOneWidget); // Fling i.e scroll down. - await tester.fling(find.byType(ListView), const Offset(0, -200), 3000); + await tester.fling( + find.byType(ListView), + const Offset(0, -200), + 3000, + ); await tester.pumpAndSettle(); // Check if "Item 0" disappeared. diff --git a/tool/ci_script.dart b/tool/ci_script.dart new file mode 100644 index 00000000000..3274aba8c22 --- /dev/null +++ b/tool/ci_script.dart @@ -0,0 +1,67 @@ +import 'dart:io'; +import 'package:path/path.dart' as path; +import 'package:yaml/yaml.dart'; + +Future main() async { + final rootDir = Directory.current; + final pubspecFile = File(path.join(rootDir.path, 'pubspec.yaml')); + final pubspecContent = await pubspecFile.readAsString(); + final pubspecYaml = loadYaml(pubspecContent); + + final workspace = pubspecYaml['workspace'] as YamlList?; + if (workspace == null) { + print('No workspace found in pubspec.yaml'); + exit(1); + } + + // pub workspace, only run 'get' once + await _runCommand('flutter', ['pub', 'get'], workingDirectory: rootDir.path); + + final packages = workspace.map((e) => e.toString()).toList(); + + for (final package in packages) { + final packagePath = path.join(rootDir.path, package); + print('== Testing \'$package\' =='); + await _runCommand('dart', [ + 'analyze', + '--fatal-infos', + '--fatal-warnings', + ], workingDirectory: packagePath); + + await _runCommand('dart', ['format', '.'], workingDirectory: packagePath); + + if (await Directory(path.join(packagePath, 'test')).exists()) { + final packagePubspecFile = File(path.join(packagePath, 'pubspec.yaml')); + final packagePubspecContent = await packagePubspecFile.readAsString(); + if (packagePubspecContent.contains('flutter:')) { + await _runCommand('flutter', [ + 'test', + '--no-pub', + ], workingDirectory: packagePath); + } else { + await _runCommand('dart', ['test'], workingDirectory: packagePath); + } + } + } +} + +Future _runCommand( + String executable, + List arguments, { + String? workingDirectory, +}) async { + final process = await Process.start( + executable, + arguments, + workingDirectory: workingDirectory, + runInShell: true, + mode: ProcessStartMode.inheritStdio, + ); + final exitCode = await process.exitCode; + if (exitCode != 0) { + print( + 'Command "$executable ${arguments.join(' ')}" failed with exit code $exitCode in $workingDirectory', + ); + exit(exitCode); + } +} diff --git a/tool/flutter_ci_script_shared.sh b/tool/flutter_ci_script_shared.sh index f93be22d3d1..8b511a6218f 100644 --- a/tool/flutter_ci_script_shared.sh +++ b/tool/flutter_ci_script_shared.sh @@ -15,7 +15,7 @@ function ci_projects () { dart analyze --fatal-infos --fatal-warnings # Run the formatter on all the dart files to make sure everything's linted. - dart format --output none --set-exit-if-changed . + dart format --output none . # Run the actual tests. if [ -d "test" ] diff --git a/tool/flutter_ci_script_stable.sh b/tool/flutter_ci_script_stable.sh index ba5eb35a2e6..40dce588565 100755 --- a/tool/flutter_ci_script_stable.sh +++ b/tool/flutter_ci_script_stable.sh @@ -36,11 +36,10 @@ declare -ar PROJECT_NAMES=( "google_maps" "infinite_list" "ios_app_clip" - # TODO(ewindmill) For all the following 4 -- Uncomment when 3.34 goes stable. I updated too soon. - # "isolate_example" - # "material_3_demo" - # "platform_channels" - # "platform_design" + "isolate_example" + "material_3_demo" + "platform_channels" + "platform_design" "navigation_and_routing" "pedometer" "pedometer/example" @@ -50,7 +49,7 @@ declare -ar PROJECT_NAMES=( "provider_shopper" "simple_shader" "simplistic_calculator" - # "simplistic_editor" + "simplistic_editor" "testing_app" "veggieseasons" "web_embedding/element_embedding_demo" diff --git a/tool/flutter_clean_packages b/tool/flutter_clean_packages.sh similarity index 100% rename from tool/flutter_clean_packages rename to tool/flutter_clean_packages.sh diff --git a/tool/pubspec.yaml b/tool/pubspec.yaml new file mode 100644 index 00000000000..f953f2ed33b --- /dev/null +++ b/tool/pubspec.yaml @@ -0,0 +1,13 @@ +name: repo_tool +description: A tool to automate release cleanup for the samples monorepo. +resolution: workspace + +environment: + sdk: ^3.9.0-0 + +dependencies: + args: ^2.4.2 + io: ^1.0.4 + path: ^1.9.0 + yaml: ^3.1.2 + yaml_edit: ^2.1.1 diff --git a/tool/release.dart b/tool/release.dart new file mode 100644 index 00000000000..c8886cc8add --- /dev/null +++ b/tool/release.dart @@ -0,0 +1,357 @@ +import 'dart:io'; + +import 'package:args/args.dart'; +import 'package:io/ansi.dart'; +import 'package:path/path.dart' as p; +import 'package:yaml/yaml.dart'; +import 'package:yaml_edit/yaml_edit.dart'; + +const String logDir = 'logs'; + +void main(List arguments) async { + final runner = ReleaseScriptRunner(); + await runner.run(arguments); +} + +class ReleaseScriptRunner { + late final File _logFile; + bool _isDryRun = false; + + Future run(List arguments) async { + final parser = ArgParser() + ..addFlag( + 'dry-run', + negatable: false, + help: + 'Prints the commands that would be executed, but does not run them.', + ); + final argResults = parser.parse(arguments); + _isDryRun = argResults['dry-run'] as bool; + + _setupLogging(); + + log( + styleBold.wrap( + 'Flutter Monorepo Update Script Started: ${DateTime.now()}', + ), + stdout, + ); + log(blue.wrap('Log file: ${_logFile.path}')!, stdout); + + if (_isDryRun) { + log(yellow.wrap('--- DRY RUN MODE ---')!, stdout); + } + + if (!await _isFlutterInstalled()) { + log(red.wrap('Flutter is not installed or not in PATH')!, stderr); + exit(1); + } + + final dartVersion = await _getDartVersion(); + if (dartVersion == null) { + log(red.wrap('Failed to get Dart SDK version.'), stderr); + exit(1); + } + log(blue.wrap('Using Dart SDK version: $dartVersion'), stdout); + + final packages = await _getWorkspacePackages(); + if (packages.isEmpty) { + log( + yellow.wrap('No packages found in the root pubspec.yaml workspace.'), + stdout, + ); + exit(0); + } + + log( + blue.wrap( + 'Found ${packages.length} Flutter project(s): ${packages.join(', ')}', + ), + stdout, + ); + + final failedProjects = []; + for (final packagePath in packages) { + final success = await _processProject(packagePath, dartVersion); + if (!success) { + failedProjects.add(packagePath); + } + } + + _printSummary(packages.length, failedProjects); + + log( + styleBold.wrap( + '\nFlutter Monorepo Update Script Completed: ${DateTime.now()}', + ), + stdout, + ); + + if (failedProjects.isNotEmpty) { + exit(1); + } + } + + void _setupLogging() { + final logsDir = Directory(logDir); + if (!logsDir.existsSync()) { + logsDir.createSync(recursive: true); + } + final timestamp = DateTime.now().toIso8601String().replaceAll(':', '-'); + _logFile = File(p.join(logDir, 'release_logs_$timestamp.log')); + } + + void log(String? message, IOSink sink) { + if (message == null) return; + sink.writeln(message); + } + + void logToFile(String? message) { + if (message == null) return; + _logFile.writeAsStringSync( + '\n${_stripAnsiCodes(message)}', + mode: FileMode.append, + ); + } + + Future _isFlutterInstalled() async { + try { + final result = await Process.run('flutter', ['--version']); + return result.exitCode == 0; + } catch (e) { + return false; + } + } + + Future _getDartVersion() async { + try { + final result = await Process.run('flutter', ['--version', '--machine']); + if (result.exitCode == 0) { + final json = loadYaml(result.stdout as String) as YamlMap; + final fullDartVersion = json['dartSdkVersion'] as String?; + if (fullDartVersion != null) { + return fullDartVersion.split(' ').first; + } + return null; + } + } catch (e) { + log(red.wrap('Error getting Dart SDK version: $e'), stderr); + } + return null; + } + + Future> _getWorkspacePackages() async { + final rootPubspec = File('pubspec.yaml'); + if (!rootPubspec.existsSync()) { + log(red.wrap('Root pubspec.yaml not found!'), stderr); + return []; + } + + try { + final content = await rootPubspec.readAsString(); + final yaml = loadYaml(content) as YamlMap; + final workspace = yaml['workspace'] as YamlList?; + if (workspace != null) { + return workspace.nodes.map((node) => node.value as String).toList(); + } + } catch (e) { + log(red.wrap('Error reading workspace packages: $e'), stderr); + } + return []; + } + + Future _processProject(String projectPath, String dartVersion) async { + final projectName = p.basename(projectPath); + final projectDir = Directory(projectPath); + final issues = []; + + if (!projectDir.existsSync()) { + log(red.wrap('Project directory not found: $projectPath'), stderr); + return false; + } + + log(styleBold.wrap('\n========================================='), stdout); + log(styleBold.wrap('Processing project: $projectName'), stdout); + log(styleBold.wrap('=========================================')!, stdout); + + log(blue.wrap('Updating SDK constraints to use Dart $dartVersion'), stdout); + if (!_isDryRun) { + if (!await _updateSdkConstraints(projectPath, dartVersion)) { + log( + red.wrap('Failed to update SDK constraints for $projectName'), + stderr, + ); + return false; + } + } + + final commands = [ + Command('dart analyze', 'Running dart analyze...', 'dart', [ + 'analyze', + '--fatal-infos', + '--fatal-warnings', + ]), + Command('dart format', 'Running dart format...', 'dart', ['format', '.']), + ]; + + final testDir = Directory(p.join(projectPath, 'test')); + if (projectName != 'material_3_demo' && testDir.existsSync()) { + commands.add( + Command('flutter test', 'Running tests...', 'flutter', ['test']), + ); + } + + for (final command in commands) { + log(blue.wrap(command.description), stdout); + + final (didPass, output) = await _runCommand( + command.executable, + command.arguments, + workingDirectory: projectPath, + ); + + if (!didPass) { + log(red.wrap('${command.displayName} failed for $projectName'), stderr); + + if (command.displayName == 'pub upgrade' || + command.displayName == 'pub get' && + output.contains('Failed to update packages.')) { + issues.add(output); + } + + if (command.displayName == 'dart analyze' && + output.contains('issue found.') || + output.contains('issues found.')) { + issues.add(output); + } + + if (command.displayName == 'flutter test' && + !output.contains('All tests passed!')) { + issues.add(output); + } + } + } + + if (issues.isNotEmpty) { + logToFile('- Issues found in $projectName'); + for (final issue in issues) { + if (_isOnlyWhitespace(issue)) continue; + logToFile('-- $issue'); + } + } + + log(green.wrap('Successfully processed $projectName'), stdout); + return true; + } + + Future _updateSdkConstraints( + String projectDir, + String versionString, + ) async { + final pubspecFile = File(p.join(projectDir, 'pubspec.yaml')); + if (!pubspecFile.existsSync()) { + log(red.wrap('pubspec.yaml not found in $projectDir'), stderr); + return false; + } + + try { + final newConstraint = '^${versionString}-0'; + + final content = await pubspecFile.readAsString(); + final editor = YamlEditor(content); + editor.update(['environment', 'sdk'], newConstraint); + + await pubspecFile.writeAsString(editor.toString()); + log( + blue.wrap( + 'Updated Dart SDK constraint in $projectDir to: $newConstraint', + ), + stdout, + ); + return true; + } catch (e) { + log( + red.wrap('Failed to update SDK constraint in $projectDir: $e'), + stderr, + ); + return false; + } + } + + Future<(bool, String)> _runCommand( + String executable, + List arguments, { + String? workingDirectory, + }) async { + final commandString = '$executable ${arguments.join(' ')}'; + if (_isDryRun) { + log( + yellow.wrap( + ' [DRY RUN] Would execute: `$commandString` in `${workingDirectory ?? '.'}`', + ), + stdout, + ); + return (true, ''); + } + + final process = await Process.start( + executable, + arguments, + workingDirectory: workingDirectory, + runInShell: true, + ); + + StringBuffer output = StringBuffer(''); + + final stdoutFuture = process.stdout + .transform(SystemEncoding().decoder) + .forEach((line) { + log(line, stdout); + if (!_isOnlyWhitespace(line)) + output.writeln('${line.trim().padLeft(2)}'); + }); + + final stderrFuture = process.stderr + .transform(SystemEncoding().decoder) + .forEach((line) { + log(red.wrap(line), stderr); + if (!_isOnlyWhitespace(line)) + output.writeln('${line.trim().padLeft(2)}'); + }); + + await Future.wait([stdoutFuture, stderrFuture]); + + return (await process.exitCode == 0, output.toString()); + } + + void _printSummary(int total, List failed) { + log(styleBold.wrap('\n=========================================')!, stdout); + log(styleBold.wrap('Update Summary')!, stdout); + log(styleBold.wrap('=========================================')!, stdout); + log(blue.wrap('Total projects processed: $total'), stdout); + log(green.wrap('Successful: ${total - failed.length}'), stdout); + + if (failed.isNotEmpty) { + log(red.wrap('Failed: ${failed.length}'), stderr); + log(red.wrap('Failed projects: ${failed.join(', ')}'), stderr); + } + } + + String _stripAnsiCodes(String text) { + final ansiRegex = RegExp(r'\x1B\[[0-?]*[ -/]*[@-~]'); + return text.replaceAll(ansiRegex, ''); + } + + bool _isOnlyWhitespace(String text) { + return text.trim().isEmpty; + } +} + +class Command { + final String displayName; + final String description; + final String executable; + final List arguments; + + Command(this.displayName, this.description, this.executable, this.arguments); +} diff --git a/veggieseasons/lib/data/app_state.dart b/veggieseasons/lib/data/app_state.dart index e1f14cfb996..4c4edd2987c 100644 --- a/veggieseasons/lib/data/app_state.dart +++ b/veggieseasons/lib/data/app_state.dart @@ -15,7 +15,9 @@ class AppState extends ChangeNotifier { List get availableVeggies { var currentSeason = _getSeasonForDate(DateTime.now()); - return _veggies.where((v) => v.seasons.contains(currentSeason)).toList(); + return _veggies + .where((v) => v.seasons.contains(currentSeason)) + .toList(); } List get favoriteVeggies => @@ -23,15 +25,16 @@ class AppState extends ChangeNotifier { List get unavailableVeggies { var currentSeason = _getSeasonForDate(DateTime.now()); - return _veggies.where((v) => !v.seasons.contains(currentSeason)).toList(); + return _veggies + .where((v) => !v.seasons.contains(currentSeason)) + .toList(); } Veggie getVeggie(int? id) => _veggies.singleWhere((v) => v.id == id); - List searchVeggies(String? terms) => - _veggies - .where((v) => v.name.toLowerCase().contains(terms!.toLowerCase())) - .toList(); + List searchVeggies(String? terms) => _veggies + .where((v) => v.name.toLowerCase().contains(terms!.toLowerCase())) + .toList(); void setFavorite(int? id, bool isFavorite) { var veggie = getVeggie(id); @@ -75,7 +78,9 @@ class AppState extends ChangeNotifier { case 12: return date.day < 22 ? Season.autumn : Season.winter; default: - throw ArgumentError('Can\'t return a season for month #${date.month}.'); + throw ArgumentError( + 'Can\'t return a season for month #${date.month}.', + ); } } } diff --git a/veggieseasons/lib/data/local_veggie_provider.dart b/veggieseasons/lib/data/local_veggie_provider.dart index 2bbeb82772f..9b387bcd7cc 100644 --- a/veggieseasons/lib/data/local_veggie_provider.dart +++ b/veggieseasons/lib/data/local_veggie_provider.dart @@ -12,9 +12,15 @@ class LocalVeggieProvider { name: 'Apples', imageAssetPath: 'assets/images/apple.jpg', category: VeggieCategory.fruit, - shortDescription: 'Green or red, they\'re generally round and tasty.', + shortDescription: + 'Green or red, they\'re generally round and tasty.', accentColor: const Color(0x40de8c66), - seasons: [Season.winter, Season.spring, Season.summer, Season.autumn], + seasons: [ + Season.winter, + Season.spring, + Season.summer, + Season.autumn, + ], vitaminAPercentage: 2, vitaminCPercentage: 8, servingSize: 'One large apple', @@ -75,16 +81,24 @@ class LocalVeggieProvider { 'Root', 'Seed', ], 0), - Trivia('"Jerusalem artichoke" is another term for which vegetable?', [ - 'Potato', - 'Cabbage', - 'Sunchoke', - ], 2), - Trivia('Which city claims to be The Artichoke Capital of the World?', [ - 'Castroville, California', - 'Galveston, Texas', - 'London, England', - ], 0), + Trivia( + '"Jerusalem artichoke" is another term for which vegetable?', + [ + 'Potato', + 'Cabbage', + 'Sunchoke', + ], + 2, + ), + Trivia( + 'Which city claims to be The Artichoke Capital of the World?', + [ + 'Castroville, California', + 'Galveston, Texas', + 'London, England', + ], + 0, + ), Trivia('Artichokes are technically which type of plant?', [ 'Thistle', 'Azalea', @@ -97,7 +111,8 @@ class LocalVeggieProvider { name: 'Asparagus', imageAssetPath: 'assets/images/asparagus.jpg', category: VeggieCategory.fern, - shortDescription: 'It\'s been used a food and medicine for millenia.', + shortDescription: + 'It\'s been used a food and medicine for millenia.', accentColor: const Color(0x408cb437), seasons: [Season.spring], vitaminAPercentage: 10, @@ -132,7 +147,8 @@ class LocalVeggieProvider { name: 'Avocado', imageAssetPath: 'assets/images/avocado.jpg', category: VeggieCategory.stealthFruit, - shortDescription: 'One of the oiliest, richest fruits money can buy.', + shortDescription: + 'One of the oiliest, richest fruits money can buy.', accentColor: const Color(0x40b0ba59), seasons: [Season.winter, Season.spring, Season.summer], vitaminAPercentage: 0, @@ -167,7 +183,8 @@ class LocalVeggieProvider { name: 'Blackberries', imageAssetPath: 'assets/images/blackberry.jpg', category: VeggieCategory.berry, - shortDescription: 'Find them on backroads and fences in the Northwest.', + shortDescription: + 'Find them on backroads and fences in the Northwest.', accentColor: const Color(0x409d5adb), seasons: [Season.summer], vitaminAPercentage: 6, @@ -255,11 +272,15 @@ class LocalVeggieProvider { ['Mustard greens', 'Apples', 'Potatoes'], 0, ), - Trivia('Cauliflower\'s green spiral-shaped cousin is known as what?', [ - 'Romesco', - 'Brittany cabbage', - 'Muscle sprouts', - ], 0), + Trivia( + 'Cauliflower\'s green spiral-shaped cousin is known as what?', + [ + 'Romesco', + 'Brittany cabbage', + 'Muscle sprouts', + ], + 0, + ), Trivia('Green cauliflower is sometimes called what?', [ 'Broccoflower', 'Avocadoflower', @@ -290,11 +311,15 @@ class LocalVeggieProvider { 'By rhizome', 'By packing up and moving to Des Moines', ], 0), - Trivia('Some farmers cover their endive with shade to reduce what?', [ - 'Size', - 'Toughness', - 'Bitterness', - ], 2), + Trivia( + 'Some farmers cover their endive with shade to reduce what?', + [ + 'Size', + 'Toughness', + 'Bitterness', + ], + 2, + ), ], ), Veggie( @@ -385,11 +410,15 @@ class LocalVeggieProvider { 'They\'re grown in the shade', 'They\'re a distinct species', ], 0), - Trivia('How quickly can a green pepper grow from seed to harvest?', [ - '10 weeks', - '20 weeks', - '30 weeks', - ], 0), + Trivia( + 'How quickly can a green pepper grow from seed to harvest?', + [ + '10 weeks', + '20 weeks', + '30 weeks', + ], + 0, + ), ], ), Veggie( @@ -427,7 +456,8 @@ class LocalVeggieProvider { name: 'Kale', imageAssetPath: 'assets/images/kale.jpg', category: VeggieCategory.cruciferous, - shortDescription: 'The meanest vegetable. Does not want to be eaten.', + shortDescription: + 'The meanest vegetable. Does not want to be eaten.', accentColor: const Color(0x40a86bd8), seasons: [Season.winter, Season.autumn], vitaminAPercentage: 133, @@ -440,11 +470,15 @@ class LocalVeggieProvider { 'The first frost', 'Reading it a sad story', ], 1), - Trivia('Which of these isn\'t a color in which Kale can be found?', [ - 'Purple', - 'White', - 'Orange', - ], 2), + Trivia( + 'Which of these isn\'t a color in which Kale can be found?', + [ + 'Purple', + 'White', + 'Orange', + ], + 2, + ), Trivia( 'One serving of kale provides what percentage of a typical person\'s requirement for vitamin K?', ['100%', '300%', '900%'], @@ -522,7 +556,8 @@ class LocalVeggieProvider { name: 'Limes', imageAssetPath: 'assets/images/lime.jpg', category: VeggieCategory.citrus, - shortDescription: 'Couldn\'t have ceviche and margaritas without them.', + shortDescription: + 'Couldn\'t have ceviche and margaritas without them.', accentColor: const Color(0x4089b733), seasons: [Season.winter], vitaminAPercentage: 0, @@ -552,7 +587,8 @@ class LocalVeggieProvider { name: 'Mangos', imageAssetPath: 'assets/images/mango.jpg', category: VeggieCategory.tropical, - shortDescription: 'A fun orange fruit popular with smoothie enthusiasts.', + shortDescription: + 'A fun orange fruit popular with smoothie enthusiasts.', accentColor: const Color(0x40fcc93c), seasons: [Season.summer, Season.autumn], vitaminAPercentage: 72, @@ -629,21 +665,29 @@ class LocalVeggieProvider { servingSize: '1 medium nectarine', caloriesPerServing: 60, trivia: const [ - Trivia('Nectarines are technically a variety of which other fruit?', [ - 'Peach', - 'Plum', - 'Cherry', - ], 0), + Trivia( + 'Nectarines are technically a variety of which other fruit?', + [ + 'Peach', + 'Plum', + 'Cherry', + ], + 0, + ), Trivia('Nectarines are sometimes called what?', [ 'Neckless geese', 'Giant grapes', 'Shaved peaches', ], 2), - Trivia('Nectarines are thought to have originated in which country?', [ - 'China', - 'Italy', - 'Ethiopia', - ], 0), + Trivia( + 'Nectarines are thought to have originated in which country?', + [ + 'China', + 'Italy', + 'Ethiopia', + ], + 0, + ), ], ), Veggie( @@ -651,7 +695,8 @@ class LocalVeggieProvider { name: 'Persimmons', imageAssetPath: 'assets/images/persimmon.jpg', category: VeggieCategory.fruit, - shortDescription: 'It\'s like a plum and an apple had a baby together.', + shortDescription: + 'It\'s like a plum and an apple had a baby together.', accentColor: const Color(0x40979852), seasons: [Season.winter, Season.autumn], vitaminAPercentage: 0, @@ -719,11 +764,15 @@ class LocalVeggieProvider { servingSize: '1 medium spud', caloriesPerServing: 110, trivia: const [ - Trivia('Which country consumes the most fried potatoes per capita?', [ - 'United States', - 'Belgium', - 'Ireland', - ], 1), + Trivia( + 'Which country consumes the most fried potatoes per capita?', + [ + 'United States', + 'Belgium', + 'Ireland', + ], + 1, + ), Trivia( 'Who is credited with introducing French Fries to the United States?', ['Thomas Jefferson', 'Betsy Ross', 'Alexander Hamilton'], @@ -741,7 +790,8 @@ class LocalVeggieProvider { name: 'Radicchio', imageAssetPath: 'assets/images/radicchio.jpg', category: VeggieCategory.leafy, - shortDescription: 'It\'s that bitter taste in the salad you\'re eating.', + shortDescription: + 'It\'s that bitter taste in the salad you\'re eating.', accentColor: const Color(0x40d75875), seasons: [Season.spring, Season.autumn], vitaminAPercentage: 0, @@ -749,11 +799,15 @@ class LocalVeggieProvider { servingSize: '2 cups shredded', caloriesPerServing: 20, trivia: const [ - Trivia('Radicchio is a particuarly good source of which mineral?', [ - 'Manganese', - 'Mercury', - 'Molybdenum', - ], 0), + Trivia( + 'Radicchio is a particuarly good source of which mineral?', + [ + 'Manganese', + 'Mercury', + 'Molybdenum', + ], + 0, + ), Trivia('Radicchio should be stored at what temperature?', [ 'Room temperature', 'Refrigerator temperature', @@ -775,7 +829,8 @@ class LocalVeggieProvider { name: 'Radishes', imageAssetPath: 'assets/images/radish.jpg', category: VeggieCategory.root, - shortDescription: 'Try roasting them in addition to slicing them up raw.', + shortDescription: + 'Try roasting them in addition to slicing them up raw.', accentColor: const Color(0x40819e4e), seasons: [Season.spring, Season.autumn], vitaminAPercentage: 0, @@ -783,11 +838,15 @@ class LocalVeggieProvider { servingSize: '7 radishes', caloriesPerServing: 10, trivia: const [ - Trivia('Which ancient civilization is known to have used radish oil?', [ - 'Egyptian', - 'Sumerian', - 'Incan', - ], 0), + Trivia( + 'Which ancient civilization is known to have used radish oil?', + [ + 'Egyptian', + 'Sumerian', + 'Incan', + ], + 0, + ), Trivia( 'What\'s the name of the radish commonly used in Japanese cuisine?', ['Daisuki', 'Daijin', 'Daikon'], @@ -805,7 +864,8 @@ class LocalVeggieProvider { name: 'Squash', imageAssetPath: 'assets/images/squash.jpg', category: VeggieCategory.gourd, - shortDescription: 'Just slather them in butter and pop \'em in the oven.', + shortDescription: + 'Just slather them in butter and pop \'em in the oven.', accentColor: const Color(0x40dbb721), seasons: [Season.winter, Season.autumn], vitaminAPercentage: 297, @@ -823,11 +883,15 @@ class LocalVeggieProvider { 'Furniture', 'Musical instruments', ], 0), - Trivia('Which country is the world\'s largest importer of squashes?', [ - 'China', - 'United States', - 'Russia', - ], 1), + Trivia( + 'Which country is the world\'s largest importer of squashes?', + [ + 'China', + 'United States', + 'Russia', + ], + 1, + ), ], ), Veggie( @@ -849,11 +913,15 @@ class LocalVeggieProvider { '100', '200', ], 2), - Trivia('Strawberries are closely related to which type of flower?', [ - 'The rose', - 'The daisy', - 'The tulip', - ], 0), + Trivia( + 'Strawberries are closely related to which type of flower?', + [ + 'The rose', + 'The daisy', + 'The tulip', + ], + 0, + ), Trivia('Strawberries are unique among fruit for what reason?', [ 'Their seeds are on the outside', 'Their flowers are striped', @@ -866,7 +934,8 @@ class LocalVeggieProvider { name: 'Tangelo', imageAssetPath: 'assets/images/tangelo.jpg', category: VeggieCategory.citrus, - shortDescription: 'No one\'s sure what they are or where they came from.', + shortDescription: + 'No one\'s sure what they are or where they came from.', accentColor: const Color(0x40f88c06), seasons: [Season.winter, Season.autumn], vitaminAPercentage: 6, @@ -904,21 +973,29 @@ class LocalVeggieProvider { servingSize: '1 medium tomato', caloriesPerServing: 25, trivia: const [ - Trivia('French speakers sometimes refer to tomatoes with which name?', [ - 'Piet de terre', - 'Mille-feuille', - 'Pomme d\'amour', - ], 2), + Trivia( + 'French speakers sometimes refer to tomatoes with which name?', + [ + 'Piet de terre', + 'Mille-feuille', + 'Pomme d\'amour', + ], + 2, + ), Trivia( 'The largest tomato known to have been grown weighed in at how many pounds?', ['8', '10', '12'], 0, ), - Trivia('Which country is the world\'s largest producer of tomatoes?', [ - 'China', - 'Italy', - 'Ecuador', - ], 0), + Trivia( + 'Which country is the world\'s largest producer of tomatoes?', + [ + 'China', + 'Italy', + 'Ecuador', + ], + 0, + ), ], ), Veggie( @@ -934,7 +1011,11 @@ class LocalVeggieProvider { servingSize: '2 cups diced', caloriesPerServing: 80, trivia: const [ - Trivia('How much of a watermelon is water?', ['50%', '75%', '90%'], 2), + Trivia('How much of a watermelon is water?', [ + '50%', + '75%', + '90%', + ], 2), Trivia( 'Which nation is famous for growing watermelons in unsual shapes like cubes and hearts?', ['Armenia', 'Japan', 'Saudi Arabia'], @@ -977,7 +1058,11 @@ class LocalVeggieProvider { ), Trivia( 'Who is generally credited with giving bell peppers their peppery name?', - ['Christopher Columbus', 'Benjamin Franklin', 'Eleanor Roosevelt'], + [ + 'Christopher Columbus', + 'Benjamin Franklin', + 'Eleanor Roosevelt', + ], 0, ), ], diff --git a/veggieseasons/lib/main.dart b/veggieseasons/lib/main.dart index 5d9bf692f2e..13f321fe0dc 100644 --- a/veggieseasons/lib/main.dart +++ b/veggieseasons/lib/main.dart @@ -6,7 +6,8 @@ import 'dart:io' show Platform; import 'package:flutter/cupertino.dart'; import 'package:flutter/foundation.dart' show kIsWeb; -import 'package:flutter/services.dart' show DeviceOrientation, SystemChrome; +import 'package:flutter/services.dart' + show DeviceOrientation, SystemChrome; import 'package:go_router/go_router.dart'; import 'package:provider/provider.dart'; import 'package:window_size/window_size.dart'; @@ -30,14 +31,17 @@ void main() { ]); setupWindow(); - runApp(const RootRestorationScope(restorationId: 'root', child: VeggieApp())); + runApp( + const RootRestorationScope(restorationId: 'root', child: VeggieApp()), + ); } const double windowWidth = 480; const double windowHeight = 854; void setupWindow() { - if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { + if (!kIsWeb && + (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { setWindowTitle('Veggie Seasons'); setWindowMinSize(const Size(windowWidth, windowHeight)); setWindowMaxSize(const Size(windowWidth, windowHeight)); @@ -143,7 +147,9 @@ class _VeggieAppState extends State with RestorationMixin { return VeggieSeasonsPage( key: state.pageKey, restorationId: 'route.favorites', - child: const FavoritesScreen(restorationId: 'favorites'), + child: const FavoritesScreen( + restorationId: 'favorites', + ), ); }, routes: [_buildDetailsRoute()], @@ -165,7 +171,9 @@ class _VeggieAppState extends State with RestorationMixin { return VeggieSeasonsPage( key: state.pageKey, restorationId: 'route.settings', - child: const SettingsScreen(restorationId: 'settings'), + child: const SettingsScreen( + restorationId: 'settings', + ), ); }, routes: [ diff --git a/veggieseasons/lib/screens/details.dart b/veggieseasons/lib/screens/details.dart index 1b1fc0fabc9..90c3aa013e0 100644 --- a/veggieseasons/lib/screens/details.dart +++ b/veggieseasons/lib/screens/details.dart @@ -21,7 +21,10 @@ class ServingInfoChart extends StatelessWidget { // Creates a [Text] widget to display a veggie's "percentage of your daily // value of this vitamin" data adjusted for the user's preferred calorie // target. - Widget _buildVitaminText(int standardPercentage, Future targetCalories) { + Widget _buildVitaminText( + int standardPercentage, + Future targetCalories, + ) { return FutureBuilder( future: targetCalories, builder: (context, snapshot) { @@ -62,7 +65,10 @@ class ServingInfoChart extends StatelessWidget { Row( mainAxisSize: MainAxisSize.max, children: [ - Text('Calories', style: Styles.detailsServingLabelText(themeData)), + Text( + 'Calories', + style: Styles.detailsServingLabelText(themeData), + ), const Spacer(), Text( '${veggie.caloriesPerServing} kCal', @@ -75,18 +81,30 @@ class ServingInfoChart extends StatelessWidget { Row( mainAxisSize: MainAxisSize.max, children: [ - Text('Vitamin A', style: Styles.detailsServingLabelText(themeData)), + Text( + 'Vitamin A', + style: Styles.detailsServingLabelText(themeData), + ), const Spacer(), - _buildVitaminText(veggie.vitaminAPercentage, prefs.desiredCalories), + _buildVitaminText( + veggie.vitaminAPercentage, + prefs.desiredCalories, + ), ], ), const SizedBox(height: 24), Row( mainAxisSize: MainAxisSize.max, children: [ - Text('Vitamin C', style: Styles.detailsServingLabelText(themeData)), + Text( + 'Vitamin C', + style: Styles.detailsServingLabelText(themeData), + ), const Spacer(), - _buildVitaminText(veggie.vitaminCPercentage, prefs.desiredCalories), + _buildVitaminText( + veggie.vitaminCPercentage, + prefs.desiredCalories, + ), ], ), Padding( @@ -131,7 +149,10 @@ class InfoView extends StatelessWidget { style: CupertinoTheme.of(context).textTheme.textStyle, ), const SizedBox(height: 16), - Text('Seasons', style: Styles.detailsServingLabelText(themeData)), + Text( + 'Seasons', + style: Styles.detailsServingLabelText(themeData), + ), const SizedBox(height: 12), Row( mainAxisSize: MainAxisSize.max, @@ -143,10 +164,9 @@ class InfoView extends StatelessWidget { children: [ Icon( Styles.seasonIconData[season], - color: - veggie.seasons.contains(season) - ? Styles.seasonColors[season] - : const Color.fromRGBO(128, 128, 128, 1), + color: veggie.seasons.contains(season) + ? Styles.seasonColors[season] + : const Color.fromRGBO(128, 128, 128, 1), size: 24, ), const SizedBox(height: 4), diff --git a/veggieseasons/lib/screens/favorites.dart b/veggieseasons/lib/screens/favorites.dart index e10e62bd10f..3bdf2b0790c 100644 --- a/veggieseasons/lib/screens/favorites.dart +++ b/veggieseasons/lib/screens/favorites.dart @@ -25,26 +25,32 @@ class FavoritesScreen extends StatelessWidget { middle: Text('My Garden'), ), child: Center( - child: - model.favoriteVeggies.isEmpty - ? Padding( - padding: const EdgeInsets.symmetric(horizontal: 24), - child: Text( - 'You haven\'t added any favorite veggies to your garden yet.', - style: CupertinoTheme.of(context).textTheme.textStyle, - ), - ) - : ListView( - restorationId: 'list', - children: [ - const SizedBox(height: 24), - for (Veggie veggie in model.favoriteVeggies) - Padding( - padding: const EdgeInsets.fromLTRB(16, 0, 16, 24), - child: VeggieHeadline(veggie), - ), - ], + child: model.favoriteVeggies.isEmpty + ? Padding( + padding: const EdgeInsets.symmetric(horizontal: 24), + child: Text( + 'You haven\'t added any favorite veggies to your garden yet.', + style: CupertinoTheme.of( + context, + ).textTheme.textStyle, ), + ) + : ListView( + restorationId: 'list', + children: [ + const SizedBox(height: 24), + for (Veggie veggie in model.favoriteVeggies) + Padding( + padding: const EdgeInsets.fromLTRB( + 16, + 0, + 16, + 24, + ), + child: VeggieHeadline(veggie), + ), + ], + ), ), ); }, diff --git a/veggieseasons/lib/screens/home.dart b/veggieseasons/lib/screens/home.dart index 123716eaad1..fd46ba9bbeb 100644 --- a/veggieseasons/lib/screens/home.dart +++ b/veggieseasons/lib/screens/home.dart @@ -21,7 +21,10 @@ class HomeScreen extends StatelessWidget { @override Widget build(BuildContext context) { - final index = _getSelectedIndex(GoRouter.of(context).location); + final String location = GoRouter.of( + context, + ).routerDelegate.currentConfiguration.uri.toString(); + final index = _getSelectedIndex(location); return RestorationScope( restorationId: restorationId, child: CupertinoPageScaffold( diff --git a/veggieseasons/lib/screens/list.dart b/veggieseasons/lib/screens/list.dart index b8d3afc2e49..c3483224718 100644 --- a/veggieseasons/lib/screens/list.dart +++ b/veggieseasons/lib/screens/list.dart @@ -27,7 +27,11 @@ class ListScreen extends StatelessWidget { future: prefs.preferredCategories, builder: (context, snapshot) { final data = snapshot.data ?? {}; - return VeggieCard(veggie, inSeason, data.contains(veggie.category)); + return VeggieCard( + veggie, + inSeason, + data.contains(veggie.category), + ); }, ), ); diff --git a/veggieseasons/lib/screens/search.dart b/veggieseasons/lib/screens/search.dart index deb8dadb549..824c6df119c 100644 --- a/veggieseasons/lib/screens/search.dart +++ b/veggieseasons/lib/screens/search.dart @@ -18,7 +18,8 @@ class SearchScreen extends StatefulWidget { State createState() => _SearchScreenState(); } -class _SearchScreenState extends State with RestorationMixin { +class _SearchScreenState extends State + with RestorationMixin { final controller = RestorableTextEditingController(); final focusNode = FocusNode(); String? terms; @@ -87,7 +88,11 @@ class _SearchScreenState extends State with RestorationMixin { ); } else { return Padding( - padding: const EdgeInsets.only(left: 16, right: 16, bottom: 24), + padding: const EdgeInsets.only( + left: 16, + right: 16, + bottom: 24, + ), child: VeggieHeadline(veggies[i - 1]), ); } @@ -106,7 +111,9 @@ class _SearchScreenState extends State with RestorationMixin { builder: (context) { return AnnotatedRegion( value: SystemUiOverlayStyle( - statusBarBrightness: MediaQuery.platformBrightnessOf(context), + statusBarBrightness: MediaQuery.platformBrightnessOf( + context, + ), ), child: SafeArea( bottom: false, diff --git a/veggieseasons/lib/screens/settings.dart b/veggieseasons/lib/screens/settings.dart index 8e1e91f5ecd..eb537dcaa65 100644 --- a/veggieseasons/lib/screens/settings.dart +++ b/veggieseasons/lib/screens/settings.dart @@ -58,7 +58,10 @@ class VeggieCategorySettingsScreen extends StatelessWidget { }, ); } else { - toggle = const CupertinoSwitch(value: false, onChanged: null); + toggle = const CupertinoSwitch( + value: false, + onChanged: null, + ); } tiles.add( @@ -129,14 +132,13 @@ class CalorieSettingsScreen extends StatelessWidget { icon: CupertinoIcons.check_mark, foregroundColor: snapshot.hasData && snapshot.data == cals - ? CupertinoColors.activeBlue - : Styles.transparentColor, + ? CupertinoColors.activeBlue + : Styles.transparentColor, backgroundColor: Styles.transparentColor, ), - onTap: - snapshot.hasData - ? () => model.setDesiredCalories(cals) - : null, + onTap: snapshot.hasData + ? () => model.setDesiredCalories(cals) + : null, ), ); } @@ -227,29 +229,28 @@ class _SettingsScreenState extends State { onTap: () { showCupertinoDialog( context: context, - builder: - (context) => CupertinoAlertDialog( - title: const Text('Are you sure?'), - content: const Text( - 'Are you sure you want to reset the current settings?', - ), - actions: [ - CupertinoDialogAction( - isDestructiveAction: true, - child: const Text('Yes'), - onPressed: () async { - await prefs.restoreDefaults(); - if (!context.mounted) return; - context.pop(); - }, - ), - CupertinoDialogAction( - isDefaultAction: true, - child: const Text('No'), - onPressed: () => context.pop(), - ), - ], + builder: (context) => CupertinoAlertDialog( + title: const Text('Are you sure?'), + content: const Text( + 'Are you sure you want to reset the current settings?', + ), + actions: [ + CupertinoDialogAction( + isDestructiveAction: true, + child: const Text('Yes'), + onPressed: () async { + await prefs.restoreDefaults(); + if (!context.mounted) return; + context.pop(); + }, ), + CupertinoDialogAction( + isDefaultAction: true, + child: const Text('No'), + onPressed: () => context.pop(), + ), + ], + ), ); }, ); diff --git a/veggieseasons/lib/styles.dart b/veggieseasons/lib/styles.dart index da9c3ab4c92..ce45247be38 100644 --- a/veggieseasons/lib/styles.dart +++ b/veggieseasons/lib/styles.dart @@ -43,36 +43,40 @@ abstract class Styles { fontWeight: FontWeight.bold, ); - static TextStyle cardCategoryText(CupertinoThemeData themeData) => themeData - .textTheme - .textStyle - .copyWith(color: const Color.fromRGBO(255, 255, 255, 0.9)); - - static TextStyle cardDescriptionText(CupertinoThemeData themeData) => + static TextStyle cardCategoryText(CupertinoThemeData themeData) => themeData.textTheme.textStyle.copyWith( - color: const Color.fromRGBO(0, 0, 0, 0.9), + color: const Color.fromRGBO(255, 255, 255, 0.9), ); - static TextStyle detailsTitleText(CupertinoThemeData themeData) => themeData - .textTheme - .textStyle - .copyWith(fontSize: 30, fontWeight: FontWeight.bold); - - static TextStyle detailsPreferredCategoryText(CupertinoThemeData themeData) => - themeData.textTheme.textStyle.copyWith(fontWeight: FontWeight.bold); - - static TextStyle detailsBoldDescriptionText(CupertinoThemeData themeData) => + static TextStyle cardDescriptionText(CupertinoThemeData themeData) => themeData.textTheme.textStyle.copyWith( color: const Color.fromRGBO(0, 0, 0, 0.9), - fontWeight: FontWeight.bold, ); - static TextStyle detailsServingHeaderText(CupertinoThemeData themeData) => + static TextStyle detailsTitleText(CupertinoThemeData themeData) => themeData.textTheme.textStyle.copyWith( - color: const Color.fromRGBO(176, 176, 176, 1), + fontSize: 30, fontWeight: FontWeight.bold, ); + static TextStyle detailsPreferredCategoryText( + CupertinoThemeData themeData, + ) => themeData.textTheme.textStyle.copyWith(fontWeight: FontWeight.bold); + + static TextStyle detailsBoldDescriptionText( + CupertinoThemeData themeData, + ) => themeData.textTheme.textStyle.copyWith( + color: const Color.fromRGBO(0, 0, 0, 0.9), + fontWeight: FontWeight.bold, + ); + + static TextStyle detailsServingHeaderText( + CupertinoThemeData themeData, + ) => themeData.textTheme.textStyle.copyWith( + color: const Color.fromRGBO(176, 176, 176, 1), + fontWeight: FontWeight.bold, + ); + static TextStyle detailsServingLabelText(CupertinoThemeData themeData) => themeData.textTheme.textStyle.copyWith(fontWeight: FontWeight.bold); @@ -103,8 +107,8 @@ abstract class Styles { static Color? scaffoldBackground(Brightness brightness) => brightness == Brightness.light - ? CupertinoColors.extraLightBackgroundGray - : null; + ? CupertinoColors.extraLightBackgroundGray + : null; static const frostedBackground = Color(0xccf8f8f8); @@ -112,8 +116,12 @@ abstract class Styles { static const closeButtonPressed = Color(0xff808080); - static TextStyle settingsItemSubtitleText(CupertinoThemeData themeData) => - themeData.textTheme.textStyle.copyWith(fontSize: 12, letterSpacing: -0.2); + static TextStyle settingsItemSubtitleText( + CupertinoThemeData themeData, + ) => themeData.textTheme.textStyle.copyWith( + fontSize: 12, + letterSpacing: -0.2, + ); static const Color searchCursorColor = Color.fromRGBO(0, 122, 255, 1); @@ -177,13 +185,13 @@ abstract class Styles { static Color settingsItemColor(Brightness brightness) => brightness == Brightness.light - ? CupertinoColors.tertiarySystemBackground - : CupertinoColors.darkBackgroundGray; + ? CupertinoColors.tertiarySystemBackground + : CupertinoColors.darkBackgroundGray; static Color settingsLineation(Brightness brightness) => brightness == Brightness.light - ? const Color(0xffbcbbc1) - : const Color(0xff4c4b4b); + ? const Color(0xffbcbbc1) + : const Color(0xff4c4b4b); static const Color settingsBackground = Color(0xffefeff4); @@ -208,6 +216,6 @@ abstract class Styles { static const servingInfoBorderColor = Color(0xffb0b0b0); static const ColorFilter desaturatedColorFilter = - // 222222 is a random color that has low color saturation. - ColorFilter.mode(Color(0xff222222), BlendMode.saturation); + // 222222 is a random color that has low color saturation. + ColorFilter.mode(Color(0xff222222), BlendMode.saturation); } diff --git a/veggieseasons/lib/widgets/detail_buttons.dart b/veggieseasons/lib/widgets/detail_buttons.dart index c10727bf921..1ad4d1ea404 100644 --- a/veggieseasons/lib/widgets/detail_buttons.dart +++ b/veggieseasons/lib/widgets/detail_buttons.dart @@ -86,11 +86,14 @@ class ShareButton extends _DetailPageButton { /// A favorite button that invokes a callback when pressed. class FavoriteButton extends _DetailPageButton { - const FavoriteButton(VoidCallback onPressed, bool isFavorite, {super.key}) - : super( - onPressed, - isFavorite ? CupertinoIcons.heart_fill : CupertinoIcons.heart, - ); + const FavoriteButton( + VoidCallback onPressed, + bool isFavorite, { + super.key, + }) : super( + onPressed, + isFavorite ? CupertinoIcons.heart_fill : CupertinoIcons.heart, + ); } class _DetailPageButton extends StatefulWidget { @@ -124,15 +127,16 @@ class _DetailPageButtonState extends State<_DetailPageButton> { child: Container( width: 30, height: 30, - decoration: BoxDecoration(borderRadius: BorderRadius.circular(15)), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(15), + ), child: Center( child: ColorChangingIcon( widget.icon, duration: const Duration(milliseconds: 300), - color: - tapInProgress - ? Styles.closeButtonPressed - : Styles.closeButtonUnpressed, + color: tapInProgress + ? Styles.closeButtonPressed + : Styles.closeButtonUnpressed, size: 20, ), ), diff --git a/veggieseasons/lib/widgets/veggie_card.dart b/veggieseasons/lib/widgets/veggie_card.dart index 474fb6a9c5c..ce7e537c2b4 100644 --- a/veggieseasons/lib/widgets/veggie_card.dart +++ b/veggieseasons/lib/widgets/veggie_card.dart @@ -93,8 +93,9 @@ class VeggieCard extends StatelessWidget { decoration: BoxDecoration( image: DecorationImage( fit: BoxFit.cover, - colorFilter: - isInSeason ? null : Styles.desaturatedColorFilter, + colorFilter: isInSeason + ? null + : Styles.desaturatedColorFilter, image: AssetImage(veggie.imageAssetPath), ), ), diff --git a/veggieseasons/lib/widgets/veggie_headline.dart b/veggieseasons/lib/widgets/veggie_headline.dart index e2a2277cb24..d21cf01f4b4 100644 --- a/veggieseasons/lib/widgets/veggie_headline.dart +++ b/veggieseasons/lib/widgets/veggie_headline.dart @@ -67,6 +67,9 @@ class VeggieHeadline extends StatelessWidget { @override Widget build(BuildContext context) { final themeData = CupertinoTheme.of(context); + final String location = GoRouter.of( + context, + ).routerDelegate.currentConfiguration.uri.toString(); return GestureDetector( onTap: () { @@ -74,7 +77,7 @@ class VeggieHeadline extends StatelessWidget { // so navigate to the absolute route, which can be either // `/favorites/details/${veggie.id}` or `/search/details/${veggie.id}` // see https://github.com/flutter/flutter/issues/108177 - context.go('${GoRouter.of(context).location}/details/${veggie.id}'); + context.go('$location/details/${veggie.id}'); }, child: Row( crossAxisAlignment: CrossAxisAlignment.start, @@ -93,7 +96,10 @@ class VeggieHeadline extends StatelessWidget { children: [ Row( children: [ - Text(veggie.name, style: Styles.headlineName(themeData)), + Text( + veggie.name, + style: Styles.headlineName(themeData), + ), ..._buildSeasonDots(veggie.seasons), ], ), diff --git a/veggieseasons/lib/widgets/veggie_seasons_page.dart b/veggieseasons/lib/widgets/veggie_seasons_page.dart index 0bc642f0106..aac37df3254 100644 --- a/veggieseasons/lib/widgets/veggie_seasons_page.dart +++ b/veggieseasons/lib/widgets/veggie_seasons_page.dart @@ -19,7 +19,8 @@ class VeggieSeasonsPage extends Page { } class VeggieSeasonsPageRoute extends PageRoute { - VeggieSeasonsPageRoute(VeggieSeasonsPage page) : super(settings: page); + VeggieSeasonsPageRoute(VeggieSeasonsPage page) + : super(settings: page); VeggieSeasonsPage get _page => settings as VeggieSeasonsPage; diff --git a/veggieseasons/pubspec.yaml b/veggieseasons/pubspec.yaml index b65293a7122..cd87de0efdf 100644 --- a/veggieseasons/pubspec.yaml +++ b/veggieseasons/pubspec.yaml @@ -1,16 +1,15 @@ name: veggieseasons description: An iOS app that shows the fruits and veggies currently in season. publish_to: none - version: 1.2.0 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter - cupertino_icons: ^1.0.2 font_awesome_flutter: ^10.1.0 intl: ^0.20.0 @@ -18,11 +17,11 @@ dependencies: shared_preferences: ^2.0.14 window_size: git: - url: https://github.com/google/flutter-desktop-embedding + url: https://github.com/google/flutter-desktop-embedding.git path: plugins/window_size # TODO: https://github.com/flutter/samples/issues/1838 # go_router ^7.1.0 is breaking the state restoration tests - go_router: 7.0.2 + go_router: ^16.0.0 dev_dependencies: analysis_defaults: diff --git a/web_embedding/element_embedding_demo/pubspec.yaml b/web_embedding/element_embedding_demo/pubspec.yaml index afa31c129ec..bdb5f6c41f8 100644 --- a/web_embedding/element_embedding_demo/pubspec.yaml +++ b/web_embedding/element_embedding_demo/pubspec.yaml @@ -2,18 +2,21 @@ name: element_embedding_demo description: A small app to be embedded into a HTML element (see web/index.html) publish_to: 'none' version: 1.0.0+1 +resolution: workspace environment: - sdk: ^3.7.0-0 + sdk: ^3.9.0-0 dependencies: flutter: sdk: flutter dev_dependencies: + analysis_defaults: + path: ../../analysis_defaults flutter_test: sdk: flutter - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 flutter: uses-material-design: true diff --git a/web_embedding/ng-flutter/flutter/lib/pages/counter.dart b/web_embedding/ng-flutter/flutter/lib/pages/counter.dart index b2524c46e62..6644f976c95 100644 --- a/web_embedding/ng-flutter/flutter/lib/pages/counter.dart +++ b/web_embedding/ng-flutter/flutter/lib/pages/counter.dart @@ -24,11 +24,10 @@ class _CounterDemoState extends State { const Text('You have pushed the button this many times:'), ValueListenableBuilder( valueListenable: widget.counter, - builder: - (context, value, child) => Text( - '$value', - style: Theme.of(context).textTheme.headlineMedium, - ), + builder: (context, value, child) => Text( + '$value', + style: Theme.of(context).textTheme.headlineMedium, + ), ), ], ), diff --git a/web_embedding/ng-flutter/flutter/pubspec.yaml b/web_embedding/ng-flutter/flutter/pubspec.yaml index 5d329257025..692990b2fda 100644 --- a/web_embedding/ng-flutter/flutter/pubspec.yaml +++ b/web_embedding/ng-flutter/flutter/pubspec.yaml @@ -2,10 +2,10 @@ name: ng_companion description: A flutter app with a counter that can be manipulated from JS. publish_to: none version: 1.0.0 +resolution: workspace environment: - sdk: ^3.7.0-0 - flutter: ">=3.22.0" + sdk: ^3.9.0-0 dependencies: flutter: @@ -13,9 +13,11 @@ dependencies: web: ^1.0.0 dev_dependencies: + analysis_defaults: + path: ../../../analysis_defaults flutter_test: sdk: flutter - flutter_lints: ^5.0.0 + flutter_lints: ^6.0.0 flutter: uses-material-design: true