capeUrl property

String? get capeUrl

ケープのURLを取得するゲッター

Implementation

String? get capeUrl {
  // ケープがある場合は最初のケープのURLを返す
  if (capes != null && capes!.isNotEmpty) {
    return capes![0].url;
  }
  return null;
}