AccountInfo<T> constructor

const AccountInfo<T>({
  1. required u64 lamports,
  2. required String owner,
  3. required T? data,
  4. required bool executable,
  5. required u64 rentEpoch,
})

Account Information.

Implementation

const AccountInfo({
  required this.lamports,
  required this.owner,
  required this.data,
  required this.executable,
  required this.rentEpoch,
});