Skip to content

Commit c5ee757

Browse files
authored
make the Object nullable (#182)
1 parent 7d8a0a6 commit c5ee757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/api.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class FlutterCallkeep extends EventManager {
211211

212212
Future<List<String>> activeCalls() async {
213213
var resp = await _channel
214-
.invokeMethod<List<Object>?>('activeCalls', <String, dynamic>{});
214+
.invokeMethod<List<Object?>?>('activeCalls', <String, dynamic>{});
215215
if (resp != null) {
216216
var uuids = <String>[];
217217
resp.forEach((element) {

0 commit comments

Comments
 (0)