M4eAuthToken constructor

const M4eAuthToken({@required M4eUniqueId id, @required String token })

Implementation

const M4eAuthToken({@required M4eUniqueId id, @required String token})
    : assert(id != null, 'M4eAuthToken [id] should not be null'),
      assert(token != null, 'M4eAuthToken [token] should not be null'),
      this.id = id,
      this.token = token;