AlphaPlayerSimpleView constructor

const AlphaPlayerSimpleView({
  1. Key? key,
  2. required String path,
  3. required double? width,
  4. required double? height,
  5. AlphaPlayerScaleType? align,
  6. bool isLooping = true,
  7. AlphaPlayerSimpleViewStartedCallback? onStarted,
  8. ValueChanged<String?>? onCompleted,
})

Implementation

const AlphaPlayerSimpleView({
  Key? key,
  required this.path,
  required this.width,
  required this.height,
  this.align,
  this.isLooping = true,
  this.onStarted,
  this.onCompleted,
}) : super(key: key);