| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : import 'package:flutter_chrome_cast/lib.dart'; 2 : 3 : /// Android-specific cast options configuration. 4 : class GoogleCastOptionsAndroid extends GoogleCastOptions { 5 : /// The Cast application ID. 6 : final String appId; 7 : 8 : /// Creates a new [GoogleCastOptionsAndroid]. 9 0 : GoogleCastOptionsAndroid({ 10 : required this.appId, 11 : }); 12 : 13 0 : @override 14 : Map<String, dynamic> toMap() { 15 0 : return { 16 0 : 'appId': appId, 17 : }; 18 : } 19 : } |
| Generated by: LCOV version 2.3.1-1 |