ApptiveGridApiKey constructor

const ApptiveGridApiKey({
  1. required String authKey,
  2. required String password,
})

Creates a ApptiveGridApiKey Model

You will get these values if you create a new ApiKey in your Profile in the ApptiveGrid App

Implementation

const ApptiveGridApiKey({
  required this.authKey,
  required this.password,
});