ReceiveIBI.fromMap constructor

ReceiveIBI.fromMap(
  1. Map map
)

Implementation

factory ReceiveIBI.fromMap(Map<dynamic, dynamic> map) {
  final double timestamp = map['timestamp'];
  final double ibi = map['ibi'];
  return ReceiveIBI(timestamp, ibi);
}