인수 유형 'Map <String, dynamic> Function ()'은 매개 변수 유형 'Map <String, dynamic>'에 할당 할 수 없습니다.
Aug 26 2020
이것은 처음에는 작동 할 수 있었지만 firebase 업데이트 후 이제이 오류가 발생합니다. 오류가 발생한 부분에 별표를 추가했습니다. 코드 아래에 오류 메시지가 추가되었습니다.
import 'package:cloud_firestore/cloud_firestore.dart';
class Record {
final String name;
final int totalVotes;
final DocumentReference reference;
Record.fromMap(Map<String, dynamic> map, {this.reference})
: assert(map['name'] != null),
assert(map['totalVotes'] != null),
name = map['name'],
totalVotes = map['totalVotes'];
Record.fromSnapshot(DocumentSnapshot snapshot)
: this.fromMap(**snapshot.data**, reference: snapshot.reference);
@override
String toString() => "Record<$name:$totalVotes>";
}
class Voters {
String uid;
String voteId;
String markedVoteOption;
}
인수 유형 'Map <String, dynamic> Function ()'은 매개 변수 유형 'Map <String, dynamic>'에 할당 할 수 없습니다.
답변
15 PeterHaddad Aug 26 2020 at 19:23
다음을 시도하십시오.
Record.fromSnapshot(DocumentSnapshot snapshot)
: this.fromMap(snapshot.data(), reference: snapshot.reference);
data() 방법입니다 :
/// Contains all the data of this [DocumentSnapshot].
Map<String, dynamic> data() {
return _CodecUtility.replaceDelegatesWithValueInMap(
_delegate.data(), _firestore);
}
그 반환 Map<String, dynamic>
4 hayashi-ay Dec 15 2020 at 21:48
DocumentSnapshot.data () 를 반환하는 함수 이기 때문 Map<String, dynamic>입니다.
따라서 대답은 다음과 같습니다.
Record.fromSnapshot(DocumentSnapshot snapshot)
: this.fromMap(snapshot.data(), reference: snapshot.reference);
1 Gene Dec 15 2020 at 04:26
분명히 필요한 것은지도의 괄호뿐이었습니다.
import 'package:cloud_firestore/cloud_firestore.dart';
class Record {
final String name;
final int votes;
final DocumentReference reference;
Record.fromMap(Map<String, dynamic> map(), {this.reference})
: assert(map()['name'] != null),
assert(map()['votes'] != null),
name = map()['name'],
votes = map()['votes'];
Record.fromSnapshot(DocumentSnapshot snapshot)
: this.fromMap(snapshot.data, reference: snapshot.reference);
@override
String toString() => "Record<$name:$votes>";
}
KennedyOwusu Aug 26 2020 at 19:28
이것이 내가 그것을 해결 한 방법입니다.
import 'package:cloud_firestore/cloud_firestore.dart';
class Record {
final String name;
final int totalVotes;
final DocumentReference reference;
Record.fromMap(Map<String, dynamic> map(), {this.reference})
: assert(map()['name'] != null),
assert(map()['totalVotes'] != null),
name = map()['name'],
totalVotes = map()['totalVotes'];
Record.fromSnapshot(DocumentSnapshot snapshot)
: this.fromMap(snapshot.data, reference: snapshot.reference);
@override
String toString() => "Record<$name:$totalVotes>";
}
class Voters {
String uid;
String voteId;
String markedVoteOption;
}
/// Contains all the data of this [DocumentSnapshot].
Map<String, dynamic> data() {
return _CodecUtility.replaceDelegatesWithValueInMap(
_delegate.data(), _firestore);
}