handle property

Future<int> get handle

Internal platform specific identifier for this Player instance.

Since, int is a primitive type, it can be used to pass this Player instance to native code without directly depending upon this library.

Implementation

Future<int> get handle {
  final result = platform?.handle;
  return result!;
}