fromId static method
Converts an integer ID (from native) to a KalmanProfile.
Implementation
static KalmanProfile fromId(int id) =>
KalmanProfile.values.firstWhere((p) => p.id == id,
orElse: () => KalmanProfile.defaultProfile);
Converts an integer ID (from native) to a KalmanProfile.
static KalmanProfile fromId(int id) =>
KalmanProfile.values.firstWhere((p) => p.id == id,
orElse: () => KalmanProfile.defaultProfile);