When I do something like this
import 'package:flutter/material.dart';
const kBaseColor = Colors.deepPurple;
const kBase300 = Colors.deepPurple[300]; // there is an error
error: Const variables must be initialized with a constant value. (const_initialized_with_non_constant_value at [myprogect] lib\ui\widgets\constants.dart:4)
Isn't it possible to assign a shade of the color as const variable?