Skip to content

Commit

Permalink
Change string property type to Map<String,String>
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowei-guan committed Jan 23, 2024
1 parent 87adc3b commit 27f9b51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/video_player_avplay/lib/video_player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ class VideoPlayerController extends ValueNotifier<VideoPlayerValue> {
/// Sets specific feature values for HTTP, MMS, or specific streaming engine (Smooth Streaming, HLS, DASH, DivX Plus Streaming, or Widevine).
/// The available streaming properties depend on the streaming protocol or engine.
/// Only for [VideoPlayerController.network].
final Map<String, dynamic>? streamingProperty;
final Map<String, String>? streamingProperty;

/// **Android only**. Will override the platform's generic file format
/// detection with whatever is set here.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class DataSource {
Map<String, dynamic>? playerOptions;

/// Sets specific feature values for HTTP, MMS, or specific streaming engine
Map<String, dynamic>? streamingProperty;
Map<String, String>? streamingProperty;
}

/// The way in which the video was originally loaded.
Expand Down

0 comments on commit 27f9b51

Please sign in to comment.