play static method
Implementation
static Future<void> play(Object input, {UMediaMetadata? metadata}) async {
final UMediaSource resolved = source(input);
await controller.open(resolved, autoPlay: true);
if (metadata != null) await controller.setNotification(metadata: metadata);
}