ProfilePage constructor

ProfilePage(
  1. {String title,
  2. @required String name,
  3. @required String role,
  4. @required String email}
)

Implementation

ProfilePage(
    {this.title,
    @required this.name,
    @required this.role,
    @required this.email});