factory LedData.fromMap(Map<String, dynamic> map) { return LedData( ledName: map['ledName'] as String, ledValue: map['ledValue'] as int, ); }