applyOpal method

ThemeData applyOpal(
  1. ThemeData t
)

Implementation

ThemeData applyOpal(ThemeData t) => t.copyWith(
    colorScheme: t.colorScheme.copyWith(
      background: Colors.transparent,
      surface: Colors.transparent,
    ),
    scaffoldBackgroundColor: Colors.transparent,
    canvasColor: Colors.transparent);