asList method
- @Deprecated('Use [DynamicScheme] for color scheme generation.' 'Use [CorePalettes] for core palettes container class.')
Returns a list of ARGB color ints from concatenated tonal palettes.
Inverse of CorePalette.fromList.
Implementation
@Deprecated(
'Use [DynamicScheme] for color scheme generation.'
'Use [CorePalettes] for core palettes container class.',
)
List<int> asList() => [
...primary.asList,
...secondary.asList,
...tertiary.asList,
...neutral.asList,
...neutralVariant.asList,
];