getValues<T> method

List<T> getValues<T>()

Return an List of T if this has the designed field

Example :

List<String>? fields = interaction.getValues<String>();
List<int>? fields = interaction.getValues<int>();

Implementation

List<T> getValues<T> () => data as List<T>;