Request Statement
flutter/flutter#126520 (comment)
Recent versions of the Dart SDK have tightened the rules for which objects can be sent across isolates (see https://api.dart.dev/stable/3.0.0/dart-isolate/SendPort/send.html and dart-lang/sdk@67683c39)
Classes might cause unsendable issues when passing through isolates. Someone reported that MultipartFile is not sendable which fails the runtime.

Solution Brainstorm
Make those classes sendable, or figure out ways to handle them in isolates.
Request Statement
flutter/flutter#126520 (comment)
Classes might cause unsendable issues when passing through isolates. Someone reported that
MultipartFileis not sendable which fails the runtime.Solution Brainstorm
Make those classes sendable, or figure out ways to handle them in isolates.