1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00

Remove unneeded return (#950)

This commit is contained in:
Ahmed Ashour
2021-11-03 12:12:41 +01:00
committed by GitHub
parent 308c6ff21c
commit 64805fe5b6
3 changed files with 2 additions and 6 deletions

View File

@@ -165,8 +165,6 @@ class HostBookApi {
message: error['message'] as String?,
details: error['details'],
);
} else {
return;
}
}
@@ -190,8 +188,6 @@ class HostBookApi {
message: error['message'] as String?,
details: error['details'],
);
} else {
return;
}
}
}