PurchaseUserModel constructor

const PurchaseUserModel({
  1. @Default(0.0) double value,
})

Model for storing user data for billing purposes.

Here you can retrieve information about the user wallet.

You can retrieve a collection or document by passing collection and document, respectively.

課金用のユーザーデータを保存するためのモデル。

ここでユーザーウォレットの情報を取得することができます。

collectiondocumentをそれぞれ渡すことによりコレクションやドキュメントを取得することができます。

Implementation

const factory PurchaseUserModel({
  @Default(0.0) double value,
}) = _PurchaseUserModel;