5
0
Fork 0

Fix typedef error

pull/4/head
NBTX 2018-10-24 20:34:51 +01:00
parent c86ebbd86b
commit e139f38eae
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import "dart:convert";
import "event.dart";
typedef void RetryIndicator(Duration);
typedef RetryIndicator = void Function(Duration retry);
class EventSourceDecoder implements StreamTransformer<List<int>, Event> {
RetryIndicator retryIndicator;