resolve method

Color resolve(
  1. BuildContext context
)

Implementation

Color resolve(BuildContext context) {
  if (this is AccentColor) {
    return AccentColor.resolve(this, context);
  }
  return this;
}