Example i have three dart class.
main.dart, firstdata.dart, and seconddata.dart.
then in firstdata.dart and seconddata.dart i have list/array data
firstdata.dart:
class firstdata{
static logo = [ assets/pic1.png, assets/pic2.png];
static name = [ 'dani', 'lict'];}
seconddata.dart:
class seconddata{
static logo = [ 'assets/image1.png', 'assets/image2.png'];
static name = [ 'rose', 'fanny'];}
Question: How can i call/access array/list value from firstdata.dart and seconddata.dart to main.dart?