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();
}