apgapg / avatar_glow

A Flutter Package providing Avatar Glow Widget
https://pub.dartlang.org/packages/avatar_glow
MIT License
276 stars 48 forks source link

repeatPauseDuration #41

Open paulobreim opened 3 months ago

paulobreim commented 3 months ago

animate: _speechToText.isListening, glowRadiusFactor: 75.0, duration: const Duration(milliseconds: 1000), glowColor: Color.fromRGBO(0x3a, 0x4f, 0x62, 1), repeatPauseDuration: const Duration(milliseconds: 100), repeat: true, child: FloatingActionButton( onPressed: () { _speechToText.isNotListening ? _startListening() : _stopListening(); }, child: Icon(_speechToText.isListening ? Icons.mic : Icons.mic_off), ), ),

The named parameter 'repeatPauseDuration' isn't defined.