onResonse method

  1. @override
List<ContactInfo> onResonse(
  1. List result
)
override

Implementation

@override
List<ContactInfo> onResonse(List result) {
  return result.map((e) => ContactInfo.fromJson(e)).toList();
}