fetchRole method Null safety
Implementation
Future<List> fetchRole() async {
var query = NCMBRole.query();
query.relatedTo(this, 'belongRole');
return query.fetchAll();
}
Future<List> fetchRole() async {
var query = NCMBRole.query();
query.relatedTo(this, 'belongRole');
return query.fetchAll();
}