AccountCell constructor

const AccountCell({
  1. Key? key,
  2. required Account account,
})

Implementation

const AccountCell({
  super.key,
  required this.account,
});