BIG FAT
This commit is contained in:
@ -5,7 +5,11 @@ abstract class CarEvents {}
|
||||
class CarLoad extends CarEvents {
|
||||
String teamId;
|
||||
|
||||
CarLoad({required this.teamId});
|
||||
/// If [force] is true the API is always called, bypassing the cache.
|
||||
/// Use this for pull-to-refresh. Defaults to false.
|
||||
bool force;
|
||||
|
||||
CarLoad({required this.teamId, this.force = false});
|
||||
}
|
||||
|
||||
class CarEdit extends CarEvents {
|
||||
|
||||
Reference in New Issue
Block a user