| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : import 'package:flutter_chrome_cast/lib.dart'; 2 : 3 : /// Android-specific extension for stream type. 4 : extension GoogleCastAndroidStreamType on CastMediaStreamType { 5 : /// Creates a stream type from a map value. 6 1 : static CastMediaStreamType fromMap(String value) { 7 1 : return CastMediaStreamType.values.firstWhere( 8 3 : (element) => element.value == value, 9 0 : orElse: () => CastMediaStreamType.none, 10 : ); 11 : } 12 : } |
| Generated by: LCOV version 2.3.1-1 |