StreamVideoTheme.fromTheme constructor
StreamVideoTheme.fromTheme(
- ThemeData theme
Creates a theme from a Material Theme
Implementation
factory StreamVideoTheme.fromTheme(ThemeData theme) {
final defaultTheme = StreamVideoTheme(brightness: theme.brightness);
final customizedTheme = StreamVideoTheme.fromColorAndTextTheme(
defaultTheme.colorTheme.copyWith(
accentPrimary: theme.colorScheme.secondary,
),
defaultTheme.textTheme,
);
return defaultTheme.merge(customizedTheme);
}