Account constructor

Account({
  1. Data? data,
  2. bool? executable,
  3. int? lamports,
  4. String? owner,
  5. int? rentEpoch,
})

Implementation

Account(
    {this.data, this.executable, this.lamports, this.owner, this.rentEpoch});