toJson method
Implementation
Map<String, dynamic> toJson() {
final androidPaths = this.androidPaths;
final deviceHostPaths = this.deviceHostPaths;
final iosPaths = this.iosPaths;
return {
if (androidPaths != null) 'androidPaths': androidPaths,
if (deviceHostPaths != null) 'deviceHostPaths': deviceHostPaths,
if (iosPaths != null) 'iosPaths': iosPaths,
};
}