AccountInfo constructor

AccountInfo({
  1. required String id,
})

Implementation

AccountInfo(
    {
    /// A unique identifier for the account. This ID will not change
    /// for the lifetime of the account.
    required String id})
    : _wrapped = $js.AccountInfo(id: id);