Intermediate Flutter
Q56 / 100

What is a MethodChannel in Flutter?

Correct! Well done.

Incorrect.

The correct answer is B) A channel enabling asynchronous method calls between Flutter Dart code and native platform code (Android/iOS)

B

Correct Answer

A channel enabling asynchronous method calls between Flutter Dart code and native platform code (Android/iOS)

Explanation

MethodChannel enables communication between Flutter (Dart) and native platform code (Kotlin/Java on Android, Swift/ObjC on iOS). Call invokeMethod() from Dart and register a MethodCallHandler in the native layer.

Progress
56/100