data property

Map<String, dynamic> data

The data associated with the action code.

Depending on the ActionCodeInfoOperation, email and previousEmail may be available.

Implementation

Map<String, dynamic> get data {
  return <String, dynamic>{
    'email': _data['email'],
    'previousEmail': _data['previousEmail'],
  };
}