picture property

String? get picture

Implementation

String? get picture => mapOrNull(
      venue: (e) => e.profilePic,
      artist: (e) => e.profilePic,
      agency: (e) => e.profilePic,
      agent: (e) => e.agency?['picture'],
      collective: (e) => e.profilePic,
    );