M4eAuthToken constructor

M4eAuthToken({@required UniqueId id, @required String token })

Implementation

factory M4eAuthToken({@required UniqueId id, @required String token}) {
  assert(id != null, 'M4eAuthToken [id] should not be null');
  assert(token != null, 'M4eAuthToken [token] should not be null');
  return M4eAuthToken._(id, token);
}