TxLoadingTheme constructor

const TxLoadingTheme({
  1. required Widget child,
  2. required TxLoadingThemeData data,
  3. Key? key,
})

创建一个加载主题,该主题定义后代 TxLoading 的颜色和样式参数。

Implementation

const TxLoadingTheme({
  required super.child,
  required this.data,
  super.key,
});