test_api_video_player 0.0.1 copy "test_api_video_player: ^0.0.1" to clipboard
test_api_video_player: ^0.0.1 copied to clipboard

outdated

A new Flutter plugin.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:test_api_video_player/test_api_video_player.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return TestApiVideoPlayer("car1", "secret_key");
  }
}