| OLD | NEW |
| 1 library googleapis.youtube.v3; | 1 library googleapis.youtube.v3; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
| 9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
| 10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
| (...skipping 7132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7143 /** | 7143 /** |
| 7144 * Rating system in New Zealand - Office of Film and Literature Classification | 7144 * Rating system in New Zealand - Office of Film and Literature Classification |
| 7145 * Possible string values are: | 7145 * Possible string values are: |
| 7146 * - "oflcG" | 7146 * - "oflcG" |
| 7147 * - "oflcM" | 7147 * - "oflcM" |
| 7148 * - "oflcPg" | 7148 * - "oflcPg" |
| 7149 * - "oflcR13" | 7149 * - "oflcR13" |
| 7150 * - "oflcR15" | 7150 * - "oflcR15" |
| 7151 * - "oflcR16" | 7151 * - "oflcR16" |
| 7152 * - "oflcR18" | 7152 * - "oflcR18" |
| 7153 * - "oflcRp13" |
| 7154 * - "oflcRp16" |
| 7153 * - "oflcUnrated" | 7155 * - "oflcUnrated" |
| 7154 */ | 7156 */ |
| 7155 core.String oflcRating; | 7157 core.String oflcRating; |
| 7156 | 7158 |
| 7157 /** | 7159 /** |
| 7158 * Rating system for Peru - Peru Rating System | 7160 * Rating system for Peru - Peru Rating System |
| 7159 * Possible string values are: | 7161 * Possible string values are: |
| 7160 * - "pefilm14" | 7162 * - "pefilm14" |
| 7161 * - "pefilm18" | 7163 * - "pefilm18" |
| 7162 * - "pefilmPg" | 7164 * - "pefilmPg" |
| (...skipping 6674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13837 _json["featuredPlaylistId"] = featuredPlaylistId; | 13839 _json["featuredPlaylistId"] = featuredPlaylistId; |
| 13838 } | 13840 } |
| 13839 if (textColor != null) { | 13841 if (textColor != null) { |
| 13840 _json["textColor"] = textColor; | 13842 _json["textColor"] = textColor; |
| 13841 } | 13843 } |
| 13842 return _json; | 13844 return _json; |
| 13843 } | 13845 } |
| 13844 } | 13846 } |
| 13845 | 13847 |
| 13846 | 13848 |
| OLD | NEW |